From: Daniel Martí Date: Tue, 18 Aug 2015 21:01:14 +0000 (-0700) Subject: lint: Update Check Name with unchanged app id X-Git-Tag: 0.5.0~196 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=261ed09d7cf5a1f0074624fd4b7e783d273bb9cd;p=fdroidserver.git lint: Update Check Name with unchanged app id --- diff --git a/fdroidserver/lint.py b/fdroidserver/lint.py index d61aab21..f255b502 100644 --- a/fdroidserver/lint.py +++ b/fdroidserver/lint.py @@ -188,6 +188,9 @@ def main(): ]): warn("UCM is set but it looks like checkupdates hasn't been run yet") + 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")