diff --git a/jrnl/cli.py b/jrnl/cli.py index 39112709..9bcb324c 100644 --- a/jrnl/cli.py +++ b/jrnl/cli.py @@ -68,8 +68,9 @@ def cli(manual_args=None): if debug: from rich.console import Console + traceback.print_tb(sys.exc_info()[2]) - Console(stderr=True).print_exception() + Console(stderr=True).print_exception(extra_lines=1) print_msg( Message( diff --git a/jrnl/messages.py b/jrnl/messages.py index 46a81f30..6733835f 100644 --- a/jrnl/messages.py +++ b/jrnl/messages.py @@ -114,6 +114,7 @@ class MsgText(Enum): """ YesOrNoPromptDefaultYes = "[Y/n]" YesOrNoPromptDefaultNo = "[y/N]" + ContinueUpgrade = "Continue upgrading jrnl?" # these should be lowercase, if possible in language # "lowercase" means whatever `.lower()` returns