1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-05 18:50:09 +02:00

Minor fixes to lint.py

This commit is contained in:
Daniel Martí 2014-02-14 23:59:39 +01:00
parent 7f2c0e27ca
commit a49f04a947

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python2 #!/usr/bin/env python2
# -*- coding: utf-8 -*- # -*- 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> # Copyright (C) 2013-2014 Daniel Martí <mvdan@mvdan.cc>
# #
# This program is free software: you can redistribute it and/or modify # 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" % ( warn("Summary of length %s is over the %i char limit" % (
summ_chars, config['char_limits']['Summary'])) summ_chars, config['char_limits']['Summary']))
# Description size limit # Invalid lists
desc_chars = 0 desc_chars = 0
for line in app['Description']: for line in app['Description']:
if re.match(r'[ ]*\*[^ ]', line): if re.match(r'[ ]*\*[^ ]', line):
warn("Invalid bulleted list: '%s'" % line) warn("Invalid bulleted list: '%s'" % line)
desc_chars += len(line) desc_chars += len(line)
# Description size limit
if desc_chars > config['char_limits']['Description']: if desc_chars > config['char_limits']['Description']:
warn("Description of length %s is over the %i char limit" % ( warn("Description of length %s is over the %i char limit" % (
desc_chars, config['char_limits']['Description'])) desc_chars, config['char_limits']['Description']))