From 29a0deb452d4fa7f59edb7e059c1a46ceb5a124d 2014-10-28 19:55:05 From: Thomas Kluyver Date: 2014-10-28 19:55:05 Subject: [PATCH] Fix Qt inputhook Closes gh-6804 --- diff --git a/IPython/lib/inputhook.py b/IPython/lib/inputhook.py index d4f452c..a3d741b 100644 --- a/IPython/lib/inputhook.py +++ b/IPython/lib/inputhook.py @@ -363,7 +363,7 @@ class Qt4InputHook(InputHookBase): """ from IPython.lib.inputhookqt4 import create_inputhook_qt4 from IPython.external.appnope import nope - app, inputhook_qt4 = create_inputhook_qt4(self, app) + app, inputhook_qt4 = create_inputhook_qt4(self.manager, app) self.manager.set_inputhook(inputhook_qt4) nope()