mirror of
https://github.com/f-droid/fdroidserver.git
synced 2026-03-17 22:47:16 -04:00
Fix another python3 build crash
This commit is contained in:
@@ -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]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user