Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sublime_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,10 +336,10 @@ def proxy_for(view):
with PROXY_LOCK:
for detector in python_detectors:
python = detector()
if python is not None:
if python is not None and os.path.exists(python[0]):
break

if not python or not os.path.exists(python[0]):
if not python:
show_python_not_found_error(python_detectors)
return

Expand Down