mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
see if that fixes things
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
Vendored
+2
-2
@@ -37,7 +37,7 @@ class Command(object):
|
||||
@property
|
||||
def _default_popen_kwargs(self):
|
||||
return {
|
||||
'env': os.environ.copy(),
|
||||
'env': os.environ,
|
||||
'stdin': subprocess.PIPE,
|
||||
'stdout': subprocess.PIPE,
|
||||
'stderr': subprocess.PIPE,
|
||||
@@ -54,7 +54,7 @@ class Command(object):
|
||||
if default_encoding is not None:
|
||||
encoding = default_encoding
|
||||
return {
|
||||
'env': os.environ.copy(),
|
||||
'env': os.environ,
|
||||
'encoding': encoding,
|
||||
'timeout': self.timeout
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user