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:
Scott Kostyshak 2024-08-22 10:51:09 -04:00
parent a423c1d7ef
commit 72f4acf66c

View File

@ -132,8 +132,8 @@ def main(argv):
lines1 = f1.readlines()
i1 = 0
for linex in lines1:
if linex[:-1] == '\origin ' + inputdir + '/':
lines1[i1] = '\origin ' + outputdir + '/' + "\n"
if linex[:-1] == r'\origin ' + inputdir + '/':
lines1[i1] = r'\origin ' + outputdir + '/' + "\n"
break
i1 = i1+1
lines2 = f2.readlines()