summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-10-11 22:28:17 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-10-11 22:28:17 (GMT)
commitbfc3a9a5c31d20cc14347d3fa12c8f46b8188b90 (patch)
treee0746ac71d75172c79ddbdeffec92205481b4297
parent8c9cd5a3d466487c54440a47c8c04959e736aae0 (diff)
downloadcpython-bfc3a9a5c31d20cc14347d3fa12c8f46b8188b90.zip
cpython-bfc3a9a5c31d20cc14347d3fa12c8f46b8188b90.tar.gz
cpython-bfc3a9a5c31d20cc14347d3fa12c8f46b8188b90.tar.bz2
Issue #19205 fix 406529adf156
I forgot to hit save.
-rw-r--r--Lib/site.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/site.py b/Lib/site.py
index d60f15b..bb329b4 100644
--- a/Lib/site.py
+++ b/Lib/site.py
@@ -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']