1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-15 09:40:12 +02:00

metadata: Sorting builds twice is not necessary

This commit is contained in:
Daniel Martí 2016-01-11 13:22:13 +01:00
parent d4f806d757
commit 7f6276889e

View File

@ -1217,7 +1217,7 @@ def write_plaintext_metadata(mf, app, w_comment, w_field, w_build):
w_field_always('Binaries')
mf.write('\n')
for build in sorted_builds(app.builds):
for build in app.builds:
if build.version == "Ignore":
continue