chiark / gitweb /
Add lint warning for empty summaries
authorDaniel Martí <mvdan@mvdan.cc>
Sun, 24 Aug 2014 22:28:40 +0000 (00:28 +0200)
committerDaniel Martí <mvdan@mvdan.cc>
Sun, 24 Aug 2014 22:28:40 +0000 (00:28 +0200)
fdroidserver/lint.py

index c13d3d4914e954ac698d43f94c86740f7eb81d5c..a5ff34d20b84816c5c338d54e4a5f57220c662e5 100644 (file)
@@ -78,6 +78,10 @@ regex_warnings = {
         (re.compile(r'^(|None|Unknown)$'),
          "No license specified"),
         ],
+    'Summary': [
+        (re.compile(r'^$'),
+         "Summary yet to be filled"),
+        ],
     'Description': [
         (re.compile(r'^No description available$'),
          "Description yet to be filled"),