]> git.lyx.org Git - features.git/commitdiff
po/lyx_pot.py: relativePath(): replace all \ by / such that we get the
authorMichael Schmitt <michael.schmitt@teststep.org>
Sun, 15 Apr 2007 16:05:23 +0000 (16:05 +0000)
committerMichael Schmitt <michael.schmitt@teststep.org>
Sun, 15 Apr 2007 16:05:23 +0000 (16:05 +0000)
same comments on Windows and *nix

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17820 a592a061-630c-0410-9148-cb99ea01b6c8

po/lyx_pot.py

index 2dd883aec5fd0fc5e45fd8df6b26ee59c9cae824..f247279b446a5b47ee82f6cfd09b0c1516f6a3de 100755 (executable)
@@ -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):