view tests/pathutil.py @ 830:a12ad254176e

Renamed buildPageAssetor to buildAssetor
author Ben Artin <ben@artins.org>
date Wed, 11 Jan 2017 23:56:51 -0500
parents a2d283d1033d
children
line wrap: on
line source

import os


def slashfix(path):
    if path is None:
        return None
    if isinstance(path, str):
        return path.replace('/', os.sep)
    fixed = []
    for p in path:
        fixed.append(p.replace('/', os.sep))
    return fixed