From 67054c7c6f8b37d1591f724101f009818e478d75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Sat, 12 Apr 2014 00:14:05 +0200 Subject: [PATCH] Fix counting of scanner problems --- fdroidserver/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fdroidserver/common.py b/fdroidserver/common.py index ef36deb6..da6be67f 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -1276,9 +1276,9 @@ def scan_source(build_dir, root_dir, thisbuild): elif mime == 'application/x-archive': count += handleproblem('static library', fd, fp) elif mime == 'application/x-executable': - handleproblem('binary executable', fd, fp) + count += handleproblem('binary executable', fd, fp) elif mime == 'application/x-java-applet': - handleproblem('Java compiled class', fd, fp) + count += handleproblem('Java compiled class', fd, fp) elif mime == 'application/jar' and has_extension(fp, 'apk'): removeproblem('APK file', fd, fp) elif has_extension(fp, 'jar') and mime in [