From: Ciaran Gultnieks Date: Sat, 4 Dec 2010 22:56:13 +0000 (+0000) Subject: Some extra analysis output code in the update script X-Git-Tag: 0.1~1618 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=9f8e95037493257b1f2cd7f8588aad1727f720c9;p=fdroidserver.git Some extra analysis output code in the update script --- diff --git a/update.py b/update.py index ab048e7d..01fb2ef8 100644 --- a/update.py +++ b/update.py @@ -238,6 +238,14 @@ for app in apps: if not gotmarketver and app['marketvercode'] != '0': print "WARNING: Don't have market version (" + app['marketversion'] + ") of " + app['name'] print " (" + app['id'] + ")" + if options.verbose: + # A bit of extra debug info, basically for diagnosing + # app developer mistakes: + print " Market vercode:" + app['marketvercode'] + print " Got:" + for apk in apks: + if apk['id'] == app['id']: + print " " + apk['versioncode'] + " - " + apk['version'] else: apps_disabled += 1