mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
Merge branch 'master' into feature/performance-update
This commit is contained in:
Vendored
+1
-1
@@ -112,7 +112,7 @@ class Command(object):
|
||||
if self.subprocess.before:
|
||||
result += self.subprocess.before
|
||||
|
||||
if self.subprocess.after and self.subprocess.after is not pexpect.EOF:
|
||||
if self.subprocess.after and self.subprocess.after not in (pexpect.EOF, pexpect.TIMEOUT):
|
||||
try:
|
||||
result += self.subprocess.after
|
||||
except (pexpect.EOF, pexpect.TIMEOUT):
|
||||
|
||||
Reference in New Issue
Block a user