po/lyx_pot.py: relativePath(): replace all \ by / such that we get the

same comments on Windows and *nix


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17820 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Michael Schmitt 2007-04-15 16:05:23 +00:00
parent bc448a7ef5
commit d738448c2d

View File

@ -25,7 +25,10 @@ def relativePath(path, base):
path2 = os.path.normpath(os.path.realpath(base)).split(os.sep)
if path1[:len(path2)] != path2:
print "Path %s is not under top source directory" % path
return os.path.join(*path1[len(path2):])
path3 = os.path.join(*path1[len(path2):]);
# replace all \ by / such that we get the same comments on Windows and *nix
path3 = path3.replace('\\', '/')
return path3
def ui_l10n(input_files, output, base):