Issue #19205 fix 406529adf156

I forgot to hit save.
This commit is contained in:
Christian Heimes 2013-10-12 00:28:17 +02:00
parent 8c9cd5a3d4
commit bfc3a9a5c3
1 changed files with 1 additions and 1 deletions

View File

@ -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']