mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 19:07:45 +00:00
Fix output of tex2lyx messages in runtests.py
This commit is contained in:
parent
a5115d4e4a
commit
38c118b02d
@ -108,8 +108,8 @@ def main(argv):
|
|||||||
proc.wait()
|
proc.wait()
|
||||||
err = proc.returncode
|
err = proc.returncode
|
||||||
errorstring = proc.stderr.read()
|
errorstring = proc.stderr.read()
|
||||||
if not errorstring is None:
|
if errorstring:
|
||||||
print(errorstring)
|
print(errorstring.decode(sys.getfilesystemencoding()))
|
||||||
if err != 0:
|
if err != 0:
|
||||||
errors.append(f)
|
errors.append(f)
|
||||||
elif not overwrite:
|
elif not overwrite:
|
||||||
|
Loading…
Reference in New Issue
Block a user