Add parens to print statement (for later transition to python3)
This commit is contained in:
parent
ee26cb5493
commit
435051b271
|
@ -80,7 +80,7 @@ with open(input_file_path) as fp:
|
|||
sequence = data[args.key_to_explode]
|
||||
|
||||
for item in sequence:
|
||||
print item
|
||||
print(item)
|
||||
item_dir_path = os.path.join(output_dir_path, item)
|
||||
|
||||
if not os.path.exists(item_dir_path):
|
||||
|
|
Loading…
Reference in New Issue