see if that fixes things

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2018-03-09 20:16:24 -05:00
parent b8b8b7fd73
commit 916dfd1420
+2 -2
View File
@@ -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
}