From a36865e9b15824892f217b3a05c99fe77cbfd4fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Fri, 16 May 2014 13:04:31 +0200 Subject: [PATCH] lint: warn about empty descriptions If some app has the default description because it's not going to be published or will never have a working build, the whole app should be disabled. --- fdroidserver/lint.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fdroidserver/lint.py b/fdroidserver/lint.py index 1f16426e..261a2017 100644 --- a/fdroidserver/lint.py +++ b/fdroidserver/lint.py @@ -74,6 +74,8 @@ regex_warnings = { "gitorious URLs should always use https:// not http://"), ], 'Description': [ + (re.compile(r'^No description available$'), + "Description yet to be filled"), (re.compile(r'[ ]*[*#][^ .]'), "Invalid bulleted list"), (re.compile(r'^ '),