mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-09 00:40:11 +01:00
lint: don't warn multiple times about lists
This commit is contained in:
parent
fbff41234f
commit
12fc0640df
@ -222,6 +222,7 @@ def main():
|
|||||||
lcount += 1
|
lcount += 1
|
||||||
if lcount > 3 and lchar not in validchars:
|
if lcount > 3 and lchar not in validchars:
|
||||||
warn("Description has a list (%s) but it isn't bulleted (*) nor numbered (#)" % lchar)
|
warn("Description has a list (%s) but it isn't bulleted (*) nor numbered (#)" % lchar)
|
||||||
|
break
|
||||||
else:
|
else:
|
||||||
lchar = l[0]
|
lchar = l[0]
|
||||||
lcount = 1
|
lcount = 1
|
||||||
|
Loading…
Reference in New Issue
Block a user