From: Ciaran Gultnieks Date: Fri, 8 Aug 2014 11:34:16 +0000 (+0100) Subject: Improve 'no sdk version found' output X-Git-Tag: 0.3.0~99 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=1c5d5c0bce5786d2bb0cbb2247d10bce8ad78ab1;p=fdroidserver.git Improve 'no sdk version found' output --- diff --git a/fdroidserver/update.py b/fdroidserver/update.py index 6c3c87dd..5b027a7e 100644 --- a/fdroidserver/update.py +++ b/fdroidserver/update.py @@ -444,12 +444,12 @@ def scan_apks(apps, apkcache, repodir, knownapks): thisinfo['features'].add(perm) if 'sdkversion' not in thisinfo: - logging.warn("no SDK version information found") + logging.warn("No SDK version information found in {0}".format(apkfile)) thisinfo['sdkversion'] = 0 # Check for debuggable apks... if common.isApkDebuggable(apkfile, config): - logging.warn('{0} is set to android:debuggable="true"!'.format(apkfile)) + logging.warn('{0} is set to android:debuggable="true"'.format(apkfile)) # Calculate the sha256... sha = hashlib.sha256()