From 60fe687d462c4f291b2a3ce4746b9c265a5831c0 2014-12-05 01:48:49 From: Thomas Kluyver Date: 2014-12-05 01:48:49 Subject: [PATCH] Fix attribute naming --- diff --git a/IPython/qt/client.py b/IPython/qt/client.py index b1bf7f7..9a1c07e 100644 --- a/IPython/qt/client.py +++ b/IPython/qt/client.py @@ -249,8 +249,8 @@ class QtKernelClient(QtKernelClientMixin, KernelClient): if shell: self.shell_channel.message_received.connect(self._check_kernel_info_reply) - self.channel_listener_thread = IOLoopThread(self.ioloop) - self.channel_listener_thread.start() + self.ioloop_thread = IOLoopThread(self.ioloop) + self.ioloop_thread.start() super(QtKernelClient, self).start_channels(shell, iopub, stdin, hb)