Remove extraneous print

This commit is contained in:
Matt Johnston 2022-01-30 13:46:20 +08:00
parent 2a6dac19b5
commit d367503fb0

View File

@ -62,9 +62,7 @@ def own_venv_command():
as the current running Python. Returns '' on not a virtualenv as the current running Python. Returns '' on not a virtualenv
""" """
try: try:
print(os.environ)
venv = os.environ['VIRTUAL_ENV'] venv = os.environ['VIRTUAL_ENV']
print(venv)
except KeyError: except KeyError:
return "" return ""