1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 15:13:27 +02:00

lint: don't warn multiple times about lists

This commit is contained in:
Daniel Martí 2015-08-13 22:14:59 -07:00
parent fbff41234f
commit 12fc0640df

View File

@ -222,6 +222,7 @@ def main():
lcount += 1
if lcount > 3 and lchar not in validchars:
warn("Description has a list (%s) but it isn't bulleted (*) nor numbered (#)" % lchar)
break
else:
lchar = l[0]
lcount = 1