mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
Merge branch 'master' into purge-pew
This commit is contained in:
+1
-2
@@ -59,8 +59,7 @@ def _handover(cmd, args):
|
||||
if os.name != "nt":
|
||||
os.execvp(cmd, args)
|
||||
else:
|
||||
proc = subprocess.run(args, shell=True, universal_newlines=True)
|
||||
sys.exit(proc.returncode)
|
||||
sys.exit(subprocess.call(args, shell=True, universal_newlines=True))
|
||||
|
||||
|
||||
class Shell(object):
|
||||
|
||||
Reference in New Issue
Block a user