From 2fe5d2efd609a3eb5af99d361c1e02c31de6402f Mon Sep 17 00:00:00 2001 From: nonylene Date: Thu, 20 Apr 2017 02:32:03 +0900 Subject: [PATCH] change comment position --- pipenv/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index 3da5938f..96753462 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -996,8 +996,8 @@ def run(command, args, three=None, python=False): click.echo(crayons.red('The command ({0}) was not found within the virtualenv!'.format(command_path))) sys.exit(1) + # Windows! if os.name == 'nt': - # Windows! import subprocess p = subprocess.Popen([command_path] + list(args), shell=True, universal_newlines=True) p.communicate()