mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-10-08 18:31:07 +03:00
Replace iterkeys() with keys()
This commit is contained in:
parent
8b3c27cb47
commit
63f8718cf5
1 changed files with 1 additions and 1 deletions
|
@ -1301,7 +1301,7 @@ def main():
|
||||||
# Sort the app list by name, then the web site doesn't have to by default.
|
# Sort the app list by name, then the web site doesn't have to by default.
|
||||||
# (we had to wait until we'd scanned the apks to do this, because mostly the
|
# (we had to wait until we'd scanned the apks to do this, because mostly the
|
||||||
# name comes from there!)
|
# name comes from there!)
|
||||||
sortedids = sorted(apps.iterkeys(), key=lambda appid: apps[appid].Name.upper())
|
sortedids = sorted(apps.keys(), key=lambda appid: apps[appid].Name.upper())
|
||||||
|
|
||||||
# APKs are placed into multiple repos based on the app package, providing
|
# APKs are placed into multiple repos based on the app package, providing
|
||||||
# per-app subscription feeds for nightly builds and things like it
|
# per-app subscription feeds for nightly builds and things like it
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue