From e063fa9715b13dff48a4166edae1c594480301ee Mon Sep 17 00:00:00 2001 From: Suhas Date: Sun, 21 Mar 2021 18:19:20 -0400 Subject: [PATCH] delete unused error message --- jrnl/exception.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/jrnl/exception.py b/jrnl/exception.py index 9c161992..bc299306 100644 --- a/jrnl/exception.py +++ b/jrnl/exception.py @@ -37,14 +37,6 @@ class JrnlError(Exception): to display the timestamps in the configured time format. """ ), - "LineWrapTooSmallForFancy": textwrap.dedent( - """ - The provided linewrap value of {config_linewrap} is too small - to properly format journal contents in fancy/boxed format. - Either provide a larger value for the linewrap or display the - journal in another format. - """ - ), } return error_messages[self.error_type].format(**kwargs)