From 63f8718cf54ff63a24df71ee21ddab82122e4ed6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Mon, 4 Jan 2016 18:51:58 +0100 Subject: [PATCH] Replace iterkeys() with keys() --- fdroidserver/update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdroidserver/update.py b/fdroidserver/update.py index f1fb8083..0c63c462 100644 --- a/fdroidserver/update.py +++ b/fdroidserver/update.py @@ -1301,7 +1301,7 @@ def main(): # 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 # 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 # per-app subscription feeds for nightly builds and things like it