Skip to content

Commit 8e49484

Browse files
committed
fix typo in cluster profile list
1 parent f3de501 commit 8e49484

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

jupyter_notebook/services/clusters/clustermanager.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ def update_profiles(self):
5353
"""List all profiles in the ipython_dir and cwd.
5454
"""
5555
try:
56-
from IPythons.paths import get_ipython_dir
56+
from IPython.paths import get_ipython_dir
5757
from IPython.core.profileapp import list_profiles_in
58-
except ImportError:
59-
self.log.info("IPython not available")
58+
except ImportError as e:
59+
self.log.info("IPython not available: %s", e)
6060
return
6161
stale = set(self.profiles)
6262
for path in [get_ipython_dir(), py3compat.getcwd()]:

0 commit comments

Comments
 (0)