view tests/pathutil.py @ 505:883a5544cd7f

bug: Fix a crash with the `ordered` page source when sorting pages.
author Ludovic Chabant <ludovic@chabant.com>
date Sat, 25 Jul 2015 00:48: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