Browse code

fix bug 'ModuleNotFounderror' -> 'ModuleNotFoundError'

Bas Nijholt authored on 15/10/2018 16:32:49
Showing 1 changed files
... ...
@@ -34,7 +34,7 @@ def notebook_extension():
34 34
 def ensure_holoviews():
35 35
     try:
36 36
         return importlib.import_module('holoviews')
37
-    except ModuleNotFounderror:
37
+    except ModuleNotFoundError:
38 38
         raise RuntimeError('holoviews is not installed; plotting is disabled.')
39 39
 
40 40