Revert "fix vercodes."

This (partially) reverts commit 05735e9fca.
This commit is contained in:
Daniel Martí 2013-05-20 15:48:55 +02:00
parent bdf24d1891
commit 6808d5d5ed
2 changed files with 6 additions and 5 deletions

View file

@ -86,7 +86,8 @@ def update_wiki(apps, apks, verbose=False):
if thisbuild['vercode'] == app['Current Version Code']:
cantupdate = True
apklist.append({
'versioncode': thisbuild['vercode'],
#TODO: Nasty: vercode is a string in the build, and an int elsewhere
'versioncode': int(thisbuild['vercode']),
'version': thisbuild['version'],
'buildproblem': thisbuild['commit'][1:]
})