summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/latex-make/figdepth.py
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/scripts/latex-make/figdepth.py')
-rwxr-xr-xMaster/texmf-dist/scripts/latex-make/figdepth.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf-dist/scripts/latex-make/figdepth.py b/Master/texmf-dist/scripts/latex-make/figdepth.py
index 095e0f4a7d7..d7a763c796e 100755
--- a/Master/texmf-dist/scripts/latex-make/figdepth.py
+++ b/Master/texmf-dist/scripts/latex-make/figdepth.py
@@ -36,11 +36,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)