fix(cli): change os.exit to sys.exit

master
Vishnunarayan K I 2019-03-11 01:19:12 +05:30
parent f6eed8f18c
commit aca5d5e50d
1 changed files with 1 additions and 1 deletions

View File

@ -52,4 +52,4 @@ def main():
raise
click.echo(click.style('ERROR:', fg='black', bg='red') +
' '+click.style(str(e), fg='red'))
os.exit(1)
sys.exit(1)