Minor improvements for exitStatus and returncode

This commit is contained in:
Ivan Kravets
2015-07-30 18:17:57 +03:00
parent 59505cb8f3
commit e6be7ab3b5

View File

@ -82,7 +82,8 @@ def main():
else:
error_str += format_exc()
click.secho(error_str, fg="red", err=True)
sys_exit(1)
return 1
return 0
if __name__ == "__main__":