mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-12 22:14:35 +00:00
Fix Python SyntaxWarning
Use raw strings to avoid the following syntax warnings that show up in LastTest.log after running tex2lyx ctests: src/tex2lyx/test/runtests.py:135: SyntaxWarning: invalid escape sequence '\o' if linex[:-1] == '\origin ' + inputdir + '/': src/tex2lyx/test/runtests.py:136: SyntaxWarning: invalid escape sequence '\o' lines1[i1] = '\origin ' + outputdir + '/' + "\n"
This commit is contained in:
parent
a423c1d7ef
commit
72f4acf66c
@ -132,8 +132,8 @@ def main(argv):
|
|||||||
lines1 = f1.readlines()
|
lines1 = f1.readlines()
|
||||||
i1 = 0
|
i1 = 0
|
||||||
for linex in lines1:
|
for linex in lines1:
|
||||||
if linex[:-1] == '\origin ' + inputdir + '/':
|
if linex[:-1] == r'\origin ' + inputdir + '/':
|
||||||
lines1[i1] = '\origin ' + outputdir + '/' + "\n"
|
lines1[i1] = r'\origin ' + outputdir + '/' + "\n"
|
||||||
break
|
break
|
||||||
i1 = i1+1
|
i1 = i1+1
|
||||||
lines2 = f2.readlines()
|
lines2 = f2.readlines()
|
||||||
|
Loading…
Reference in New Issue
Block a user