1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 15:13:27 +02:00

stats: Don't confuse app with appid

This commit is contained in:
Daniel Martí 2015-04-20 18:26:23 +02:00
parent 3c2f84fb15
commit e7ac90b6b8

View File

@ -296,8 +296,8 @@ def main():
logging.info("Processing latest apps...")
latest = knownapks.getlatest(10)
f = open('stats/latestapps.txt', 'w')
for app in latest:
f.write(app + '\n')
for appid in latest:
f.write(appid + '\n')
f.close()
if unknownapks: