From: Ciaran Gultnieks Date: Fri, 15 Nov 2013 10:00:04 +0000 (+0000) Subject: Always include Maintainer Notes, even if only for auto-generated parts X-Git-Tag: 0.1~185 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=67b6106a55db7fc8bbbe899e6344b8a48202568a;p=fdroidserver.git Always include Maintainer Notes, even if only for auto-generated parts --- diff --git a/fdroidserver/update.py b/fdroidserver/update.py index 27f87296..073e005b 100644 --- a/fdroidserver/update.py +++ b/fdroidserver/update.py @@ -76,10 +76,10 @@ def update_wiki(apps, apks): wikidata += "=Description=\n" wikidata += common.description_wiki(app['Description']) + "\n" + wikidata += "=Maintainer Notes=\n" if 'Maintainer Notes' in app: - wikidata += "=Maintainer Notes=\n" wikidata += common.description_wiki(app['Maintainer Notes']) + "\n" - wikidata += "\nMetadata: [https://gitorious.org/f-droid/fdroiddata/source/master:metadata/{0}.txt current] [https://gitorious.org/f-droid/fdroiddata/history/metadata/{0}.txt history]\n".format(app['id']) + wikidata += "\nMetadata: [https://gitorious.org/f-droid/fdroiddata/source/master:metadata/{0}.txt current] [https://gitorious.org/f-droid/fdroiddata/history/metadata/{0}.txt history]\n".format(app['id']) # Get a list of all packages for this application... apklist = []