view tests/pathutil.py @ 822:133580265c57

Don?t swallow generic errors during baking
author Ben Artin <ben@artins.org>
date Mon, 02 Jan 2017 16:30:57 -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