Add parens to print statement (for later transition to python3)

This commit is contained in:
Charlie O'Keefe 2021-04-09 14:55:57 -06:00
parent ee26cb5493
commit 435051b271
1 changed files with 1 additions and 1 deletions

View File

@ -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):