From 5af099eb08f244e27170d192f89a1809d0742f99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Sun, 7 Jun 2015 14:14:56 +0200 Subject: [PATCH] lint: take forcevercode into account for UCM warnings --- fdroidserver/lint.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fdroidserver/lint.py b/fdroidserver/lint.py index 4a7134ff..f8d7d1a0 100644 --- a/fdroidserver/lint.py +++ b/fdroidserver/lint.py @@ -137,6 +137,7 @@ def main(): and app['Update Check Mode'] == 'RepoManifest' and not curbuild['commit'].startswith('unknown') and curbuild['vercode'] == app['Current Version Code'] + and not curbuild['forcevercode'] and any(s in curbuild['commit'] for s in '.,_-/')): warn("Last used commit '%s' looks like a tag, but Update Check Mode is '%s'" % ( curbuild['commit'], app['Update Check Mode']))