From 50c907e9c9fd67acf63721dd9f8f7095e555a73f 2012-09-21 16:29:40
From: teegaar <teegaar@gmail.com>
Date: 2012-09-21 16:29:40
Subject: [PATCH] Update IPython/frontend/terminal/interactiveshell.py

fix issue #2419
---

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,