mirror of
https://github.com/YunoHost/package_linter.git
synced 2024-09-03 20:06:12 +02:00
Stupid typo leading to apps with exactly 3 warnings being able to reach level 7+ T_T
This commit is contained in:
parent
c4af75125a
commit
6338aca006
1 changed files with 1 additions and 1 deletions
|
@ -396,7 +396,7 @@ class App(TestSuite):
|
|||
_print(" There are some critical issues in this app :(")
|
||||
elif tests_reports["error"]:
|
||||
_print(" Uhoh there are some errors to be fixed :(")
|
||||
elif len(tests_reports["warning"]) > 3:
|
||||
elif len(tests_reports["warning"]) >= 3:
|
||||
_print(" Still some warnings to be fixed :s")
|
||||
elif len(tests_reports["warning"]) == 2:
|
||||
_print(" Only 2 warnings remaining! You can do it!")
|
||||
|
|
Loading…
Reference in a new issue