From 73eb234a45c412077ce343f0a995cfae5402c01a Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 23 Jan 2017 19:14:47 -0500 Subject: [PATCH] better output --- pipenv/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index 616be123..a46be7b9 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -528,7 +528,7 @@ def run(command, args, three=None): try: c = pexpect.spawn('{0} {1}'.format(which(command), ' '.join(args))) except pexpect.exceptions.ExceptionPexpect: - click.echo(crayons.red('The command was not found!')) + click.echo(crayons.red('The command was not found within the virtualenv!')) sys.exit(1) # Interact with the new shell.