mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 15:32:30 +03:00
Don't separate RM by branches on UCM stats
This commit is contained in:
parent
0861f870a3
commit
f40ec0eaaa
1 changed files with 1 additions and 3 deletions
|
@ -176,7 +176,7 @@ def main():
|
||||||
# Calculate and write stats for update check modes...
|
# Calculate and write stats for update check modes...
|
||||||
ucms = {}
|
ucms = {}
|
||||||
for app in metaapps:
|
for app in metaapps:
|
||||||
checkmode = app['Update Check Mode']
|
checkmode = app['Update Check Mode'].split('/')[0]
|
||||||
if checkmode in ucms:
|
if checkmode in ucms:
|
||||||
ucms[checkmode] += 1;
|
ucms[checkmode] += 1;
|
||||||
else:
|
else:
|
||||||
|
@ -199,8 +199,6 @@ def main():
|
||||||
f.write(license + ' ' + str(count) + '\n')
|
f.write(license + ' ' + str(count) + '\n')
|
||||||
f.close()
|
f.close()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Write list of latest apps added to the repo...
|
# Write list of latest apps added to the repo...
|
||||||
latest = knownapks.getlatest(10)
|
latest = knownapks.getlatest(10)
|
||||||
f = open('stats/latestapps.txt', 'w')
|
f = open('stats/latestapps.txt', 'w')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue