summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/latex-make
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2018-09-05 20:48:18 +0000
committerKarl Berry <karl@freefriends.org>2018-09-05 20:48:18 +0000
commitef7aedbc1cabb3eebb59082e349f9792c9c4d3c1 (patch)
tree4c3e440165fd20a40469e5432be6bf7cb3d08e37 /Master/texmf-dist/scripts/latex-make
parent4581638cda25064d85ffadd4f6e76b0a8395af2d (diff)
latex-make (5sep18)
git-svn-id: svn://tug.org/texlive/trunk@48590 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/latex-make')
-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)