Incorporated the review comment

pull/12188/head
Rajkumar Kanagaraj 2020-01-03 10:13:39 -08:00
parent e5c6254372
commit 504ef7e7e1
1 changed files with 2 additions and 2 deletions

View File

@ -261,11 +261,11 @@ def main():
library_build_success = True library_build_success = True
except ToolException as e: except ToolException as e:
# ToolException output is handled by the build log # ToolException output is handled by the build log
print("ERROR: " + str(e)) print("[ERROR] " + str(e))
pass pass
except NotSupportedException as e: except NotSupportedException as e:
# NotSupportedException is handled by the build log # NotSupportedException is handled by the build log
print("ERROR: " + str(e)) print("[ERROR] " + str(e))
pass pass
except Exception as e: except Exception as e:
if options.verbose: if options.verbose: