view tests/pathutil.py @ 954:d709429f02eb

publish: Add more options for logging, better feedback when it fails.
author Ludovic Chabant <ludovic@chabant.com>
date Thu, 05 Oct 2017 21:30:25 -0700
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