chiark / gitweb /
Fix another python3 build crash
authorCiaran Gultnieks <ciaran@ciarang.com>
Mon, 14 Mar 2016 22:23:19 +0000 (22:23 +0000)
committerCiaran Gultnieks <ciaran@ciarang.com>
Mon, 14 Mar 2016 22:23:19 +0000 (22:23 +0000)
fdroidserver/build.py

index 3837694bd8450a8acaa3f3bd6215d4c2d9515db7..fe9d4b9f27e5d6abdfcee1bf00708673c115f0a6 100644 (file)
@@ -1063,7 +1063,7 @@ def main():
     allapps = metadata.read_metadata(xref=not options.onserver)
 
     apps = common.read_app_args(options.appid, allapps, True)
-    for appid, app in apps.items():
+    for appid, app in list(apps.items()):
         if (app.Disabled and not options.force) or not app.RepoType or not app.builds:
             del apps[appid]