mirror of
https://github.com/YunoHost/package_linter.git
synced 2024-09-03 20:06:12 +02:00
Use an Info instead of a Warning for packages that are not in the YunoHost-Apps organisation
This commit is contained in:
parent
c0b225941f
commit
22b5931946
1 changed files with 2 additions and 2 deletions
|
@ -1755,7 +1755,7 @@ class AppCatalog(TestSuite):
|
|||
"The URL for this app in the catalog should be %s" % repo_org
|
||||
)
|
||||
else:
|
||||
yield Warning(
|
||||
yield Info(
|
||||
"Consider adding your app to the YunoHost-Apps organization to allow the community to contribute more easily"
|
||||
)
|
||||
|
||||
|
@ -1768,7 +1768,7 @@ class AppCatalog(TestSuite):
|
|||
return urlopen(repo_brique)["code"] != 404
|
||||
|
||||
if not is_in_github_org() and not is_in_brique_org():
|
||||
yield Warning(
|
||||
yield Info(
|
||||
"Consider adding your app to the YunoHost-Apps organization to allow the community to contribute more easily"
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue