summaryrefslogtreecommitdiff
path: root/build/android/gyp/util/jar_info_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'build/android/gyp/util/jar_info_utils.py')
-rw-r--r--build/android/gyp/util/jar_info_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/android/gyp/util/jar_info_utils.py b/build/android/gyp/util/jar_info_utils.py
index 987ee9dcf1..546ce5ded3 100644
--- a/build/android/gyp/util/jar_info_utils.py
+++ b/build/android/gyp/util/jar_info_utils.py
@@ -44,7 +44,7 @@ def WriteJarInfoFile(info_path, info_data, source_file_map=None):
temporary location.
"""
with open(info_path, 'w') as info_file:
- for fully_qualified_name, path in info_data.iteritems():
+ for fully_qualified_name, path in info_data.items():
if source_file_map and path in source_file_map:
path = source_file_map[path]
assert not path.startswith('/tmp'), (