From d6dbad65c660a3d358a06646e39c49ed64e95b5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Thu, 23 Jan 2014 10:54:32 +0100 Subject: [PATCH] Don't run lint on disabled apps --- fdroidserver/lint.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fdroidserver/lint.py b/fdroidserver/lint.py index 501532fd..1142818a 100644 --- a/fdroidserver/lint.py +++ b/fdroidserver/lint.py @@ -80,6 +80,9 @@ def main(): appid = app['id'] lastcommit = '' + if app['Disabled']: + continue + for build in app['builds']: if 'commit' in build and 'disable' not in build: lastcommit = build['commit']