Fix some python bugs left before

This commit is contained in:
Fu Hanxi
2020-04-29 10:41:39 +08:00
committed by bot
parent 79976e7370
commit 04342a73f2
3 changed files with 2 additions and 3 deletions

View File

@@ -112,7 +112,7 @@ def main():
try:
build_system_class.build(build_info)
except BuildError as e:
logging.error(e.message)
logging.error(str(e))
if args.keep_going:
failed_builds.append(build_info)
else: