From: Enrico Forestieri Date: Tue, 19 May 2015 21:18:18 +0000 (+0200) Subject: This is supposed to end with a '/' X-Git-Tag: 2.2.0alpha1~734 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=2e78738bf07e3688e55a2b1fffc871c89363eb21;p=features.git This is supposed to end with a '/' --- diff --git a/lib/lyx2lyx/lyx_2_2.py b/lib/lyx2lyx/lyx_2_2.py index f3a5371c94..cceabbe4d1 100644 --- a/lib/lyx2lyx/lyx_2_2.py +++ b/lib/lyx2lyx/lyx_2_2.py @@ -1025,7 +1025,7 @@ def convert_origin(document): if document.dir == "": origin = "stdin" else: - origin = document.dir.replace('\\', '/') + origin = document.dir.replace('\\', '/') + '/' if os.name != 'nt': origin = unicode(origin, sys.getfilesystemencoding()) document.header[i:i] = ["\\origin " + origin]