mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 06:46:15 +00:00
remove debug print statements that should not have made it into the last release.
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user