From: Daniel Martí Date: Thu, 15 Aug 2013 10:22:49 +0000 (+0200) Subject: Do not say "manifest exists" if that's not the case X-Git-Tag: 0.1~449 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=a0d3c2c80d45078d7302e1bdbd3ae2f6202a00a1;p=fdroidserver.git Do not say "manifest exists" if that's not the case --- diff --git a/fdroidserver/checkupdates.py b/fdroidserver/checkupdates.py index 452a83db..1fcb023b 100644 --- a/fdroidserver/checkupdates.py +++ b/fdroidserver/checkupdates.py @@ -77,8 +77,8 @@ def check_tags(app, sdk_path): # Only process tags where the manifest exists... paths = common.manifest_paths(build_dir, flavour) version, vercode, package = common.parse_androidmanifests(paths) - print "Manifest exists. Found version %s" % version if package and package == app['id'] and version and vercode: + print "Manifest exists. Found version %s" % version if int(vercode) > int(hcode): hcode = str(int(vercode)) hver = version