From a0d3c2c80d45078d7302e1bdbd3ae2f6202a00a1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Mart=C3=AD?= Date: Thu, 15 Aug 2013 12:22:49 +0200 Subject: [PATCH] Do not say "manifest exists" if that's not the case --- fdroidserver/checkupdates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2