From 9a417871e8b3d390b5edd2625778feb4ed9e811f Mon Sep 17 00:00:00 2001 From: Kosma Moczek Date: Mon, 13 Aug 2018 18:17:46 +0200 Subject: [PATCH] more Python 3 fixes --- art/command_line.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/art/command_line.py b/art/command_line.py index 0ed965f..9ac9552 100644 --- a/art/command_line.py +++ b/art/command_line.py @@ -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 == '.':