mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 15:32:30 +03:00
Remove strange semicolons
This commit is contained in:
parent
2a5c8a4aa2
commit
5849b43e02
1 changed files with 4 additions and 4 deletions
|
@ -229,7 +229,7 @@ def main():
|
||||||
checkmode = checkmode[:12]
|
checkmode = checkmode[:12]
|
||||||
if checkmode.startswith('Tags '):
|
if checkmode.startswith('Tags '):
|
||||||
checkmode = checkmode[:4]
|
checkmode = checkmode[:4]
|
||||||
ucms[checkmode] += 1;
|
ucms[checkmode] += 1
|
||||||
f = open('stats/update_check_modes.txt', 'w')
|
f = open('stats/update_check_modes.txt', 'w')
|
||||||
for checkmode in ucms:
|
for checkmode in ucms:
|
||||||
count = ucms[checkmode]
|
count = ucms[checkmode]
|
||||||
|
@ -240,7 +240,7 @@ def main():
|
||||||
ctgs = Counter()
|
ctgs = Counter()
|
||||||
for app in metaapps:
|
for app in metaapps:
|
||||||
for category in app['Categories']:
|
for category in app['Categories']:
|
||||||
ctgs[category] += 1;
|
ctgs[category] += 1
|
||||||
f = open('stats/categories.txt', 'w')
|
f = open('stats/categories.txt', 'w')
|
||||||
for category in ctgs:
|
for category in ctgs:
|
||||||
count = ctgs[category]
|
count = ctgs[category]
|
||||||
|
@ -254,7 +254,7 @@ def main():
|
||||||
continue
|
continue
|
||||||
antifeatures = [a.strip() for a in app['AntiFeatures'].split(',')]
|
antifeatures = [a.strip() for a in app['AntiFeatures'].split(',')]
|
||||||
for antifeature in antifeatures:
|
for antifeature in antifeatures:
|
||||||
afs[antifeature] += 1;
|
afs[antifeature] += 1
|
||||||
f = open('stats/antifeatures.txt', 'w')
|
f = open('stats/antifeatures.txt', 'w')
|
||||||
for antifeature in afs:
|
for antifeature in afs:
|
||||||
count = afs[antifeature]
|
count = afs[antifeature]
|
||||||
|
@ -266,7 +266,7 @@ def main():
|
||||||
licenses = Counter()
|
licenses = Counter()
|
||||||
for app in metaapps:
|
for app in metaapps:
|
||||||
license = app['License']
|
license = app['License']
|
||||||
licenses[license] += 1;
|
licenses[license] += 1
|
||||||
f = open('stats/licenses.txt', 'w')
|
f = open('stats/licenses.txt', 'w')
|
||||||
for license in licenses:
|
for license in licenses:
|
||||||
count = licenses[license]
|
count = licenses[license]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue