From 7be9f2037d4f8b02700b475b64347af0369e19dd Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Sat, 19 Feb 2022 16:22:42 -0800 Subject: [PATCH] add line breaks to keyboard interrupt so it looks more like other exceptions --- jrnl/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jrnl/cli.py b/jrnl/cli.py index e90c8b66..6b95a63d 100644 --- a/jrnl/cli.py +++ b/jrnl/cli.py @@ -41,7 +41,7 @@ def cli(manual_args=None): return 1 except KeyboardInterrupt: - print_msg("KeyboardInterrupt", "Aborted by user", msg=Message.ERROR) + print_msg("\nKeyboardInterrupt", "\nAborted by user", msg=Message.ERROR) return 1 except Exception as e: