From a406c0d96f2cb06ff41d65697dda1955ec65bcac 2012-09-30 10:27:06 From: Bussonnier Matthias <bussonniermatthias@gmail.com> Date: 2012-09-30 10:27:06 Subject: [PATCH] Merge pull request #2420 from teegaar/master Pass ipython_dir to __init__() method of TerminalInteractiveShell's superclass. --- diff --git a/IPython/frontend/terminal/interactiveshell.py b/IPython/frontend/terminal/interactiveshell.py index 934b694..40befad 100644 --- a/IPython/frontend/terminal/interactiveshell.py +++ b/IPython/frontend/terminal/interactiveshell.py @@ -357,7 +357,7 @@ class TerminalInteractiveShell(InteractiveShell): usage=None, banner1=None, banner2=None, display_banner=None): super(TerminalInteractiveShell, self).__init__( - config=config, profile_dir=profile_dir, user_ns=user_ns, + config=config, ipython_dir=ipython_dir, profile_dir=profile_dir, user_ns=user_ns, user_module=user_module, custom_exceptions=custom_exceptions ) # use os.system instead of utils.process.system by default,