Replace itervalues() with values()

This commit is contained in:
Daniel Martí 2016-01-04 17:43:22 +01:00
parent ce18d1cc85
commit b73cc8e0b3
3 changed files with 3 additions and 3 deletions

View file

@ -1198,7 +1198,7 @@ def main():
# Generate a list of categories...
categories = set()
for app in apps.itervalues():
for app in apps.values():
categories.update(app.Categories)
# Read known apks data (will be updated and written back when we've finished)