From 686ad951afee87a469ecaa663540267158ba86ac Mon Sep 17 00:00:00 2001 From: Matt Davis Date: Sat, 3 Feb 2024 21:09:23 -0500 Subject: [PATCH] remove debug print statements that should not have made it into the last release. --- pipenv/utils/shell.py | 1 - pipenv/utils/virtualenv.py | 1 - 2 files changed, 2 deletions(-) diff --git a/pipenv/utils/shell.py b/pipenv/utils/shell.py index 6a047ffd..811ff7f2 100644 --- a/pipenv/utils/shell.py +++ b/pipenv/utils/shell.py @@ -237,7 +237,6 @@ def find_python(finder, line=None): :return: A path to python :rtype: str """ - print(line) if line and not isinstance(line, str): raise TypeError(f"Invalid python search type: expected string, received {line!r}") if line: diff --git a/pipenv/utils/virtualenv.py b/pipenv/utils/virtualenv.py index be37522b..6192b208 100644 --- a/pipenv/utils/virtualenv.py +++ b/pipenv/utils/virtualenv.py @@ -353,7 +353,6 @@ def find_a_system_python(line): # Use the windows finder executable if (line.startswith(("py ", "py.exe "))) and os.name == "nt": line = line.split(" ", 1)[1].lstrip("-") - print(line) python_entry = find_python(finder, line) return python_entry