sort antiFeatures list in index-v1.json

This commit is contained in:
Michael Pöhn committed 2017-09-26 14:12:53 +02:00
1 parent b6b79edf11
commit dfc6261ccb
1 file changed
+1 -1
+1 -1
View File
@@ -163,7 +163,7 @@ def make_v1(apps, packages, repodir, repodict, requestsdict, fdroid_signing_key_
def _index_encoder_default(obj):
if isinstance(obj, set):
return list(obj)
return sorted(list(obj))
if isinstance(obj, datetime):
return int(obj.timestamp() * 1000) # Java expects milliseconds
raise TypeError(repr(obj) + " is not JSON serializable")