Skip to content

Commit e0479df

Browse files
committed
update-checkout: Python 3 compatibility fix (dict.iteritems())
1 parent 62d8dde commit e0479df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/update-checkout

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def obtain_additional_swift_sources(opts = {'with_ssh': False}):
6666
'swift-corelibs-foundation': 'apple/swift-corelibs-foundation',
6767
'swift-integration-tests': 'apple/swift-integration-tests',
6868
}
69-
for dir_name, repo in additional_repos.iteritems():
69+
for dir_name, repo in additional_repos.items():
7070
with WorkingDirectory(SWIFT_SOURCE_ROOT):
7171
if not os.path.isdir(os.path.join(dir_name, ".git")):
7272
print("--- Cloning '" + dir_name + "' ---")

0 commit comments

Comments
 (0)