1
0
forked from clan/clan-core

Merge pull request 'clan-cli: Disable stack trace on KeyboardInterrupt' (#1641) from Qubasa/clan-core:Qubasa-main into main

This commit is contained in:
clan-bot 2024-06-21 11:14:47 +00:00
commit 641ec7e097

View File

@ -348,6 +348,9 @@ def main() -> None:
log.error(e)
sys.exit(1)
except KeyboardInterrupt:
log.warning("Interrupted by user")
sys.exit(1)
if __name__ == "__main__":