mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
Replace itervalues() with values()
This commit is contained in:
parent
ce18d1cc85
commit
b73cc8e0b3
3 changed files with 3 additions and 3 deletions
|
|
@ -1070,7 +1070,7 @@ def main():
|
|||
raise FDroidException("No apps to process.")
|
||||
|
||||
if options.latest:
|
||||
for app in apps.itervalues():
|
||||
for app in apps.values():
|
||||
for build in reversed(app.builds):
|
||||
if build.disable and not options.force:
|
||||
continue
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue