diff --git a/fdroidserver/lint.py b/fdroidserver/lint.py index cc0ca498..bd7a43cc 100644 --- a/fdroidserver/lint.py +++ b/fdroidserver/lint.py @@ -190,6 +190,8 @@ def main(): for line in app['Description']: if re.match(r'[ ]*[*#][^ .]', line): warn("Invalid bulleted list: '%s'" % line) + if re.match(r'^ ', line): + warn("Unnecessary leading space: '%s'" % line) desc_chars += len(line) # Description size limit