Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 185dc3b4 authored by Vincent Danjean's avatar Vincent Danjean
Browse files

Fix compatibility with recent fig2dev

parent f19d88d6
No related branches found
No related tags found
No related merge requests found
......@@ -1747,11 +1747,11 @@ def main():
continue
if line[0] in "\t ":
if display:
print(line)
print(line, end='')
else:
Fld = line.split(' ', 9999)
if not Fld[0] or Fld[0] not in ('1', '2', '3', '4', '5'):
print(comment+line)
print(comment+line, end='')
display = True
elif Fld[0] == '4':
display = show(Fld[3], line)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment