mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 15:30:28 +03:00
Replace iteritems() with items()
This commit is contained in:
parent
6819c109fe
commit
75419c1f04
9 changed files with 30 additions and 30 deletions
|
|
@ -69,7 +69,7 @@ def main():
|
|||
if options.to is not None and options.to not in supported:
|
||||
parser.error("Must give a valid format to --to")
|
||||
|
||||
for appid, app in apps.iteritems():
|
||||
for appid, app in apps.items():
|
||||
base, ext = common.get_extension(app.metadatapath)
|
||||
if not options.to and ext not in supported:
|
||||
logging.info("Ignoring %s file at '%s'" % (ext, app.metadatapath))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue