fix unhandled keyboardinterrupt

This commit is contained in:
bakatrouble 2019-11-25 22:53:05 +03:00
parent b60977713c
commit 61da2bd079

View File

@ -18,4 +18,7 @@ class Command(BaseCommand):
except Exception as e:
sentry_sdk.capture_exception(e)
traceback.print_exc()
sleep(5)
try:
sleep(5)
except KeyboardInterrupt:
return