mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-13 02:30:11 +01:00
Correction to a5fafe6
This commit is contained in:
parent
a5fafe6c05
commit
e081a83757
@ -53,8 +53,9 @@ def update_wiki(apps, apks):
|
||||
wikidata = ''
|
||||
if app['Disabled']:
|
||||
wikidata += '{{Disabled|' + app['Disabled'] + '}}\n'
|
||||
for af in app.get('AntiFeatures', []).split(','):
|
||||
wikidata += '{{AntiFeature|' + af + '}}\n'
|
||||
if app['AntiFeatures']:
|
||||
for af in app['AntiFeatures'].split(','):
|
||||
wikidata += '{{AntiFeature|' + af + '}}\n'
|
||||
wikidata += '{{App|id=%s|name=%s|added=%s|lastupdated=%s|source=%s|tracker=%s|web=%s|donate=%s|flattr=%s|bitcoin=%s|litecoin=%s|license=%s|root=%s}}\n'%(
|
||||
app['id'],
|
||||
app['Name'],
|
||||
|
Loading…
Reference in New Issue
Block a user