This commit is contained in:
Kovid Goyal 2023-02-25 08:49:49 +05:30
parent 0d0f74a131
commit d550aef792
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -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'):