From d550aef792d6b0b5066d43b1354b35136f36e540 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 25 Feb 2023 08:49:49 +0530 Subject: [PATCH] Fix #6056 --- kitty/conf/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/conf/utils.py b/kitty/conf/utils.py index bc06c09c7..e82b6fca7 100644 --- a/kitty/conf/utils.py +++ b/kitty/conf/utils.py @@ -206,7 +206,7 @@ def parse_line( return m = key_pat.match(line) if m is None: - log_error(f'Ignoring invalid config line: {line}') + log_error(f'Ignoring invalid config line: {line!r}') return key, val = m.groups() if key in ('include', 'globinclude', 'envinclude'):