From a1b141cfee99130fbecb1bd1da17a6c404608df5 Mon Sep 17 00:00:00 2001 From: Oz Tiram Date: Sun, 13 Nov 2022 22:42:05 +0100 Subject: [PATCH] Core: fix usage of console.status --- pipenv/core.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pipenv/core.py b/pipenv/core.py index b435330f..e9846fba 100644 --- a/pipenv/core.py +++ b/pipenv/core.py @@ -1009,7 +1009,8 @@ def do_create_virtualenv(project, python=None, site_packages=None, pypi_mirror=N # Actually create the virtualenv. error = None - with console.status("Creating virtual environment...", project.s) as st: + # TODO: update project setting here + with console.status("Creating virtual environment...") as st: c = subprocess_run(cmd, env=pip_config) click.secho(f"{c.stdout}", fg="cyan", err=True) if c.returncode != 0: