From d738448c2df9ac75dc70830c12922377fa122d99 Mon Sep 17 00:00:00 2001 From: Michael Schmitt Date: Sun, 15 Apr 2007 16:05:23 +0000 Subject: [PATCH] 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 --- po/lyx_pot.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/lyx_pot.py b/po/lyx_pot.py index 2dd883aec5..f247279b44 100755 --- a/po/lyx_pot.py +++ b/po/lyx_pot.py @@ -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): -- 2.39.2