mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-10-08 18:31:07 +03:00
Replace itervalues() with values()
This commit is contained in:
parent
ce18d1cc85
commit
b73cc8e0b3
3 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue