Skip to content

Commit

Permalink
update-checkout: Python 3 compatibility fix (dict.iteritems())
Browse files Browse the repository at this point in the history
  • Loading branch information
gribozavr committed Dec 25, 2015
1 parent 62d8dde commit e0479df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/update-checkout
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def obtain_additional_swift_sources(opts = {'with_ssh': False}):
'swift-corelibs-foundation': 'apple/swift-corelibs-foundation',
'swift-integration-tests': 'apple/swift-integration-tests',
}
for dir_name, repo in additional_repos.iteritems():
for dir_name, repo in additional_repos.items():
with WorkingDirectory(SWIFT_SOURCE_ROOT):
if not os.path.isdir(os.path.join(dir_name, ".git")):
print("--- Cloning '" + dir_name + "' ---")
Expand Down

0 comments on commit e0479df

Please sign in to comment.