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
6 changes: 4 additions & 2 deletions client/diagnose.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@
import subprocess
import pkgutil
import logging
import pip.req
import jasperpath
try: # for pip >= 10
import pip._internal.req
except ImportError: # for pip <= 9.0.3
import pip.reqimport jasperpath
if sys.version_info < (3, 3):
from distutils.spawn import find_executable
else:
Expand Down