##// END OF EJS Templates
fix Traitlets 4.2 API usage.
Matthias Bussonnier -
Show More
@@ -49,8 +49,7 b' class ExtensionManager(Configurable):'
49 is added to ``sys.path`` automatically.
49 is added to ``sys.path`` automatically.
50 """
50 """
51
51
52 shell = Instance('IPython.core.interactiveshell.InteractiveShellABC').tag(
52 shell = Instance('IPython.core.interactiveshell.InteractiveShellABC', allow_none=True)
53 allow_none=True)
54
53
55 def __init__(self, shell=None, **kwargs):
54 def __init__(self, shell=None, **kwargs):
56 super(ExtensionManager, self).__init__(shell=shell, **kwargs)
55 super(ExtensionManager, self).__init__(shell=shell, **kwargs)
General Comments 0
You need to be logged in to leave comments. Login now