Skip to content

Commit

Permalink
Fix all python2 print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Sep 25, 2024
1 parent 99ada57 commit 38c919f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ILD/doc/latex/documentEnvelopes.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ def lineStr( tl, opt="" ):
i=0
for t in tl:
if( i>0 ):
print(' -- ',, file=o)
print(' -- ', file=o)
print('(', t[0] ,',', t[1],') ', file=o)
i += 1
print(';', file=o)
Expand Down

0 comments on commit 38c919f

Please sign in to comment.