Skip to content
Snippets Groups Projects
Commit d80665c5 authored by Dennis Gläser's avatar Dennis Gläser
Browse files

[bin][extractlinedata] use python3 style print()

parent 3dfc9832
No related branches found
No related tags found
1 merge request!2207Feature/improve extract line data
......@@ -64,10 +64,10 @@ for curFile in args['files']:
# print the parameters and the column numbers
if args['verbosity'] == 2:
with open(csvFile) as f:
print csvFile
print(csvFile)
reader = csv.reader(f)
paramList = list(reader)
paramCounter=1
for param in paramList[0]:
print "%-2i %s" % (paramCounter, param)
print("%-2i %s" % (paramCounter, param))
paramCounter += 1
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment