From 861c075876f40d24b09cff087a205bb59c84962b Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Mon, 16 Jul 2018 02:42:45 -0400 Subject: [PATCH] Use new api in help methods Signed-off-by: Dan Ryan --- pipenv/help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/help.py b/pipenv/help.py index 93f8f3ff..ac8d70bd 100644 --- a/pipenv/help.py +++ b/pipenv/help.py @@ -30,7 +30,7 @@ def get_pipenv_diagnostics(): print("Other Python installations in `PATH`:") print("") finder = pythonfinder.Finder(system=False, global_search=True) - python_paths = getattr(finder, 'system_path').find_all_python_versions() + python_paths = finder.find_all_python_versions() for python in python_paths: python_version = python.py_version.version python_path = python.path.as_posix()