Added (subtle) license information for latest apps.

This commit is contained in:
Hans-Emil Skogh 2012-02-11 22:32:25 +01:00 committed by Ciaran Gultnieks
parent 2f4d198589
commit 05e7146de0
2 changed files with 6 additions and 2 deletions

View file

@ -502,7 +502,8 @@ for line in file(os.path.join('stats', 'latestapps.txt')):
for app in apps:
if app['id'] == appid:
data += app['Name'] + "\t"
data += app['icon'] + "\n"
data += app['icon'] + "\t"
data += app['License'] + "\n"
break
f = open('repo/latestapps.dat', 'w')
f.write(data)