mirror of
https://github.com/python/cpython.git
synced 2025-09-27 18:59:43 +00:00
parent
8c9cd5a3d4
commit
bfc3a9a5c3
1 changed files with 1 additions and 1 deletions
|
@ -465,7 +465,7 @@ def venv(known_paths):
|
||||||
with open(virtual_conf) as f:
|
with open(virtual_conf) as f:
|
||||||
for line in f:
|
for line in f:
|
||||||
line = line.strip()
|
line = line.strip()
|
||||||
m = CONFIG_LINE.match(line)
|
m = config_line.match(line)
|
||||||
if m:
|
if m:
|
||||||
d = m.groupdict()
|
d = m.groupdict()
|
||||||
key, value = d['key'].lower(), d['value']
|
key, value = d['key'].lower(), d['value']
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue