Also remove 'disable' from auto-update builds

This commit is contained in:
Daniel Martí 2014-04-29 16:06:24 +02:00
parent 13af519069
commit 63ce679a9d

View file

@ -481,8 +481,9 @@ def main():
if not gotcur: if not gotcur:
newbuild = latest.copy() newbuild = latest.copy()
if 'origlines' in newbuild: for k in ('origlines', 'disable'):
del newbuild['origlines'] if k in newbuild:
del newbuild[k]
newbuild['vercode'] = app['Current Version Code'] newbuild['vercode'] = app['Current Version Code']
newbuild['version'] = app['Current Version'] + suffix newbuild['version'] = app['Current Version'] + suffix
logging.info("...auto-generating build for " + newbuild['version']) logging.info("...auto-generating build for " + newbuild['version'])