Skip to content

Commit 2c0666d

Browse files
authored
Merge pull request #1019 from davidbrochart/python2to3_fix
Fix print statement
2 parents 90bb063 + 945448d commit 2c0666d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/clearh5.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def clearh5(filename,dataDir='.',addname="_clean", tCount=None, global_sync=True
4040
for gridChild in TemporalGridCollection.findall("Grid"):
4141
counter=int(gridChild.find('Time').attrib['Name'])
4242
if(counter >= tCount):
43-
print counter
43+
print(counter)
4444
Domain[0].remove(gridChild)
4545

4646
import re

0 commit comments

Comments
 (0)