From c7bcb0947ae32acc9cdba7a6975d2f2557f10a39 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 26 Sep 2021 13:20:42 -0700 Subject: [PATCH] indent subsequent error and warning lines --- jc/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jc/utils.py b/jc/utils.py index f345a3bf..a1d7e81b 100644 --- a/jc/utils.py +++ b/jc/utils.py @@ -29,7 +29,7 @@ def warning_message(message_lines): first_wrapper = TextWrapper(width=columns, subsequent_indent=' ' * 15) next_wrapper = TextWrapper(width=columns, initial_indent=' ' * 15, - subsequent_indent=' ' * 15) + subsequent_indent=' ' * 19) first_line = message_lines.pop(0) first_str = f'jc: Warning - {first_line}' @@ -61,7 +61,7 @@ def error_message(message_lines): first_wrapper = TextWrapper(width=columns, subsequent_indent=' ' * 13) next_wrapper = TextWrapper(width=columns, initial_indent=' ' * 13, - subsequent_indent=' ' * 13) + subsequent_indent=' ' * 17) first_line = message_lines.pop(0) first_str = f'jc: Error - {first_line}'