From 4d6b87aa598c8dbbde4fffc9331a0eec70b8980f Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 21 Jan 2017 20:31:21 -0500 Subject: [PATCH] fixes --- pipenv/cli.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index d26945af..05bdd4d4 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -267,13 +267,10 @@ def which_python(): @click.option('--bare', is_flag=True, default=False, help="Minimal output.") @click.version_option(prog_name=crayons.yellow('pipenv'), version=__version__) @click.pass_context -def cli(ctx, where=False, bare=False, system=True): +def cli(ctx, where=False, bare=False): if ctx.invoked_subcommand is None: if where: do_where(bare=bare) - if system: - print 'using global pip' - USE_GLOBAL = True