remove debug print statements that should not have made it into the last release.

This commit is contained in:
Matt Davis
2024-02-03 21:09:23 -05:00
committed by Oz Tiram
parent d4483dd2a3
commit 686ad951af
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -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:
-1
View File
@@ -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