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

Stop excessive build output

This commit is contained in:
Ciaran Gultnieks 2013-11-15 09:46:46 +00:00
parent b48239084d
commit 7ca5955cac

View File

@ -907,7 +907,7 @@ def main():
logfile = open(os.path.join(log_dir, app['id'] + '.log'), 'a+')
logfile.write(str(be))
logfile.close()
print "Could not build app %s due to BuildException: %s" % (app['id'], be)
print "Could not build app %s due to BuildException: %s" % (app['id'], be.value)
if options.stop:
sys.exit(1)
failed_apps[app['id']] = be