mirror of https://github.com/python/cpython
Fixed typo in previous commit (issue #6815).
This commit is contained in:
commit
1392f68e0e
|
@ -301,7 +301,7 @@ def expandvars(path):
|
|||
name = name[1:-1]
|
||||
try:
|
||||
if environ is None:
|
||||
value = os.fsencode(os.environ[os.fsdecode(var)])
|
||||
value = os.fsencode(os.environ[os.fsdecode(name)])
|
||||
else:
|
||||
value = environ[name]
|
||||
except KeyError:
|
||||
|
|
Loading…
Reference in New Issue