From 5849b43e028584964a55a3fe9e84b05cec5c98c4 Mon Sep 17 00:00:00 2001 From: Ciaran Gultnieks Date: Wed, 30 Apr 2014 11:46:28 +0100 Subject: [PATCH] Remove strange semicolons --- fdroidserver/stats.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fdroidserver/stats.py b/fdroidserver/stats.py index 7b38bb1f..fab2a4a9 100644 --- a/fdroidserver/stats.py +++ b/fdroidserver/stats.py @@ -229,7 +229,7 @@ def main(): checkmode = checkmode[:12] if checkmode.startswith('Tags '): checkmode = checkmode[:4] - ucms[checkmode] += 1; + ucms[checkmode] += 1 f = open('stats/update_check_modes.txt', 'w') for checkmode in ucms: count = ucms[checkmode] @@ -240,7 +240,7 @@ def main(): ctgs = Counter() for app in metaapps: for category in app['Categories']: - ctgs[category] += 1; + ctgs[category] += 1 f = open('stats/categories.txt', 'w') for category in ctgs: count = ctgs[category] @@ -254,7 +254,7 @@ def main(): continue antifeatures = [a.strip() for a in app['AntiFeatures'].split(',')] for antifeature in antifeatures: - afs[antifeature] += 1; + afs[antifeature] += 1 f = open('stats/antifeatures.txt', 'w') for antifeature in afs: count = afs[antifeature] @@ -266,7 +266,7 @@ def main(): licenses = Counter() for app in metaapps: license = app['License'] - licenses[license] += 1; + licenses[license] += 1 f = open('stats/licenses.txt', 'w') for license in licenses: count = licenses[license] -- 2.30.2