From: Daniel Martí Date: Fri, 11 Sep 2015 00:54:27 +0000 (-0700) Subject: lint: remove "no recommended build" check X-Git-Tag: 0.5.0~115 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=a5c2e503b27b11547a8f7e903ea161d776d05525;p=fdroidserver.git lint: remove "no recommended build" check In some cases we do want to not recommend any version. The client should more or less gracefully handle this. --- diff --git a/fdroidserver/lint.py b/fdroidserver/lint.py index 94abdcc9..f5ac8975 100644 --- a/fdroidserver/lint.py +++ b/fdroidserver/lint.py @@ -228,10 +228,6 @@ def main(): if app['Update Check Name'] == appid: warn("Update Check Name is set to the known app id - it can be removed") - cvc = int(app['Current Version Code']) - if cvc > 0 and cvc < lowest_vercode: - warn("Current Version Code is lower than any enabled build") - # Missing or incorrect categories if not app['Categories']: warn("Categories are not set")