From ace4834cf78eb6e37f95a878da7ef0c0415ccffe Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Mart=C3=AD?= Date: Mon, 7 Mar 2016 22:29:45 +0000 Subject: [PATCH] lint: Also warn about gitlab links missing /issues --- fdroidserver/lint.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fdroidserver/lint.py b/fdroidserver/lint.py index 94cb81fc..4aa9dcbc 100644 --- a/fdroidserver/lint.py +++ b/fdroidserver/lint.py @@ -66,7 +66,9 @@ regex_checks = { 'Source Code': http_checks, 'Repo': https_enforcings, 'Issue Tracker': http_checks + [ - (re.compile(r'.*github\.com/[^/]+/[^/]+[/]*$'), + (re.compile(r'.*github\.com/[^/]+/[^/]+/*$'), + "/issues is missing"), + (re.compile(r'.*gitlab\.com/[^/]+/[^/]+/*$'), "/issues is missing"), ], 'Donate': http_checks + [ -- 2.30.2