diff options
author | Karl Berry <karl@freefriends.org> | 2018-09-05 20:48:18 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-09-05 20:48:18 +0000 |
commit | ef7aedbc1cabb3eebb59082e349f9792c9c4d3c1 (patch) | |
tree | 4c3e440165fd20a40469e5432be6bf7cb3d08e37 /Master/texmf-dist/scripts | |
parent | 4581638cda25064d85ffadd4f6e76b0a8395af2d (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')
-rwxr-xr-x | Master/texmf-dist/scripts/latex-make/figdepth.py | 4 |
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) |