Change ^C exit code to 0

This commit is contained in:
k4m4 2019-02-17 02:41:10 +02:00
parent 3c24219419
commit 9238b1bd88
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ except:
def shutdown():
print('\n\n{}Thanks for dropping by.'
'\nCatch ya later!{}'.format(GREEN, END))
os._exit(1)
os._exit(0)
logging.getLogger("kamene.runtime").setLevel(logging.ERROR) # Shut up kamene!
try: