From 22b593194644ea4d3b34a9cd809be263d7905153 Mon Sep 17 00:00:00 2001 From: Tagadda <36127788+Tagadda@users.noreply.github.com> Date: Mon, 21 Mar 2022 12:25:10 +0000 Subject: [PATCH] Use an Info instead of a Warning for packages that are not in the YunoHost-Apps organisation --- package_linter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_linter.py b/package_linter.py index 6dc8aee..9e4ffd6 100755 --- a/package_linter.py +++ b/package_linter.py @@ -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" )