mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
Fix another python3 build crash
This commit is contained in:
parent
c1ac6f4e88
commit
6cecb69bf2
1 changed files with 1 additions and 1 deletions
|
|
@ -1063,7 +1063,7 @@ def main():
|
||||||
allapps = metadata.read_metadata(xref=not options.onserver)
|
allapps = metadata.read_metadata(xref=not options.onserver)
|
||||||
|
|
||||||
apps = common.read_app_args(options.appid, allapps, True)
|
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:
|
if (app.Disabled and not options.force) or not app.RepoType or not app.builds:
|
||||||
del apps[appid]
|
del apps[appid]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue