mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-10-05 08:51:06 +03:00
stats: Don't confuse app with appid
This commit is contained in:
parent
3c2f84fb15
commit
e7ac90b6b8
1 changed files with 2 additions and 2 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue