chiark / gitweb /
Minor fixes to lint.py
authorDaniel Martí <mvdan@mvdan.cc>
Fri, 14 Feb 2014 22:59:39 +0000 (23:59 +0100)
committerDaniel Martí <mvdan@mvdan.cc>
Fri, 14 Feb 2014 22:59:39 +0000 (23:59 +0100)
fdroidserver/lint.py

index 164bd6a606bcfd5d871e0a3162398f42008ea4fe..c7f82202a01387c5707513fa174062c15ba10493 100644 (file)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python2
 # -*- coding: utf-8 -*-
 #
-# rewritemeta.py - part of the FDroid server tool
+# lint.py - part of the FDroid server tool
 # Copyright (C) 2013-2014 Daniel Martí <mvdan@mvdan.cc>
 #
 # This program is free software: you can redistribute it and/or modify
@@ -142,12 +142,14 @@ def main():
             warn("Summary of length %s is over the %i char limit" % (
                 summ_chars, config['char_limits']['Summary']))
 
-        # Description size limit
+        # Invalid lists
         desc_chars = 0
         for line in app['Description']:
             if re.match(r'[ ]*\*[^ ]', line):
                 warn("Invalid bulleted list: '%s'" % line)
             desc_chars += len(line)
+
+        # Description size limit
         if desc_chars > config['char_limits']['Description']:
             warn("Description of length %s is over the %i char limit" % (
                 desc_chars, config['char_limits']['Description']))