This commit is contained in:
ahmadbilalkhalid 2019-08-29 23:18:57 +05:00
parent 1313690094
commit 294d7790fd
1 changed files with 1 additions and 1 deletions

View File

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