mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-09 00:40:29 +03:00
metadata: Sorting builds twice is not necessary
This commit is contained in:
parent
d4f806d757
commit
7f6276889e
1 changed files with 1 additions and 1 deletions
|
|
@ -1217,7 +1217,7 @@ def write_plaintext_metadata(mf, app, w_comment, w_field, w_build):
|
||||||
w_field_always('Binaries')
|
w_field_always('Binaries')
|
||||||
mf.write('\n')
|
mf.write('\n')
|
||||||
|
|
||||||
for build in sorted_builds(app.builds):
|
for build in app.builds:
|
||||||
|
|
||||||
if build.version == "Ignore":
|
if build.version == "Ignore":
|
||||||
continue
|
continue
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue