From 294d7790fd5b0e0004c63280d90b421ed56cb0aa Mon Sep 17 00:00:00 2001 From: Ahmed Bilal Khalid Date: Thu, 29 Aug 2019 23:18:57 +0500 Subject: [PATCH] a --- app/helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helper.py b/app/helper.py index 0405c86..1d03d24 100644 --- a/app/helper.py +++ b/app/helper.py @@ -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: