[Python-checkins] cpython: Issue #19205 fix 406529adf156

christian.heimes python-checkins at python.org
Sat Oct 12 00:28:26 CEST 2013


http://hg.python.org/cpython/rev/2cd1b28d1666
changeset:   86214:2cd1b28d1666
user:        Christian Heimes <christian at cheimes.de>
date:        Sat Oct 12 00:28:17 2013 +0200
summary:
  Issue #19205 fix 406529adf156
I forgot to hit save.

files:
  Lib/site.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/site.py b/Lib/site.py
--- a/Lib/site.py
+++ b/Lib/site.py
@@ -465,7 +465,7 @@
         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']

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list