clan-cli: Don't print trace on Keyboard Interrupt

This commit is contained in:
Qubasa
2025-09-24 15:43:04 +02:00
parent 8ff060c589
commit 5595b2f862

View File

@@ -555,8 +555,8 @@ def main() -> None:
else:
log.error(e) # noqa: TRY400
sys.exit(1)
except KeyboardInterrupt as ex:
log.warning("Interrupted by user", exc_info=ex)
except KeyboardInterrupt:
log.warning("Interrupted by user")
sys.exit(1)