Merge pull request #9589 from bridadan/fix_export_exception_msg

Improve error message for exports for OS2-only targets
pull/9604/head
Martin Kojtal 2019-02-04 17:26:10 +01:00 committed by GitHub
commit 1c483e87b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -380,8 +380,8 @@ def main():
ignore=options.ignore
)
except NotSupportedException as exc:
args_error(parser, "%s not supported by %s" % (mcu, ide))
print("[Not Supported] %s" % str(exc))
exit(1)
exit(0)
if __name__ == "__main__":