Commit bfc3a9a5 authored by Christian Heimes's avatar Christian Heimes

Issue #19205 fix 406529adf156

I forgot to hit save.
parent 8c9cd5a3
......@@ -465,7 +465,7 @@ def venv(known_paths):
with open(virtual_conf) as f:
for line in f:
line = line.strip()
m = CONFIG_LINE.match(line)
m = config_line.match(line)
if m:
d = m.groupdict()
key, value = d['key'].lower(), d['value']
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment