We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3de501 commit 8e49484Copy full SHA for 8e49484
jupyter_notebook/services/clusters/clustermanager.py
@@ -53,10 +53,10 @@ def update_profiles(self):
53
"""List all profiles in the ipython_dir and cwd.
54
"""
55
try:
56
- from IPythons.paths import get_ipython_dir
+ from IPython.paths import get_ipython_dir
57
from IPython.core.profileapp import list_profiles_in
58
- except ImportError:
59
- self.log.info("IPython not available")
+ except ImportError as e:
+ self.log.info("IPython not available: %s", e)
60
return
61
stale = set(self.profiles)
62
for path in [get_ipython_dir(), py3compat.getcwd()]:
0 commit comments