This commit is contained in:
ahmadbilalkhalid 2019-08-29 23:18:57 +05:00
parent 1313690094
commit 294d7790fd

View file

@ -88,7 +88,7 @@ class PipenvOperation(object):
else: else:
command = [pip_install_options, "pipenv", "install"] command = [pip_install_options, "pipenv", "install"]
try: try:
output = subprocess.check_output(command.split(), cwd=path) output = subprocess.check_output(command, cwd=path)
except subprocess.CalledProcessError as e: except subprocess.CalledProcessError as e:
return Result(e, ResultType.failure, inspect.currentframe().f_code.co_name) return Result(e, ResultType.failure, inspect.currentframe().f_code.co_name)
else: else: