chiark / gitweb /
fix pylint unused-argument
[fdroidserver.git] / fdroidserver / update.py
index 273b5f0d2834714fa34df7d9a738da8e994abb95..2e79ea2975cc82f259956f07181efb28e117e3c2 100644 (file)
@@ -1137,7 +1137,7 @@ def scan_apk(apkcache, apkfilename, repodir, knownapks, use_date_from_apk):
             apk['minSdkVersion'] = 1
 
         # Check for debuggable apks...
-        if common.isApkAndDebuggable(apkfile, config):
+        if common.isApkAndDebuggable(apkfile):
             logging.warning('{0} is set to android:debuggable="true"'.format(apkfile))
 
         # Get the signature (or md5 of, to be precise)...