Fix another python3 build crash

This commit is contained in:
Ciaran Gultnieks 2016-03-14 22:23:19 +00:00
parent c1ac6f4e88
commit 6cecb69bf2

View file

@ -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]