From: Daniel Martí Date: Thu, 23 Jan 2014 09:54:32 +0000 (+0100) Subject: Don't run lint on disabled apps X-Git-Tag: 0.2~372^2~4 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=d6dbad65c660a3d358a06646e39c49ed64e95b5f;p=fdroidserver.git Don't run lint on disabled apps --- 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']