Skip to content

Commit

Permalink
more Python 3 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Kosma Moczek committed Aug 13, 2018
1 parent 931401a commit 9a41787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion art/command_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def install():
for entry in artifacts_lock:
# convert the "install" dictionary to list of (match, translate)
installs = []
for source, destination in entry['install'].iteritems():
for source, destination in entry['install'].items():
# Nb. Defaults parameters on lambda are required due to derpy
# Python closure semantics (scope capture).
if source == '.':
Expand Down

0 comments on commit 9a41787

Please sign in to comment.