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

fix linking to yml metadata in wiki

This commit is contained in:
Michael Pöhn 2020-07-02 11:42:39 +02:00
parent cb368a674c
commit 681a27546c

View File

@ -237,7 +237,7 @@ def update_wiki(apps, apks):
wikidata += "=Maintainer Notes=\n" wikidata += "=Maintainer Notes=\n"
if app.MaintainerNotes: if app.MaintainerNotes:
wikidata += metadata.description_wiki(app.MaintainerNotes) + "\n" wikidata += metadata.description_wiki(app.MaintainerNotes) + "\n"
wikidata += "\nMetadata: [https://gitlab.com/fdroid/fdroiddata/blob/master/metadata/{0}.txt current] [https://gitlab.com/fdroid/fdroiddata/commits/master/metadata/{0}.txt history]\n".format(appid) wikidata += "\nMetadata: [https://gitlab.com/fdroid/fdroiddata/blob/master/metadata/{0}.yml current] [https://gitlab.com/fdroid/fdroiddata/commits/master/metadata/{0}.yml history]\n".format(appid)
# Get a list of all packages for this application... # Get a list of all packages for this application...
apklist = [] apklist = []