From 99da4b6dde67615a1082bda6a1a131b2ebd92dec 2013-10-23 02:44:47 From: MinRK Date: 2013-10-23 02:44:47 Subject: [PATCH] set parent header properly in comm messages --- diff --git a/IPython/kernel/comm/comm.py b/IPython/kernel/comm/comm.py index 16a7d61..21f8c57 100644 --- a/IPython/kernel/comm/comm.py +++ b/IPython/kernel/comm/comm.py @@ -68,6 +68,7 @@ class Comm(LoggingConfigurable): data = {} if data is None else data self.session.send(self.iopub_socket, msg_type, dict(data=data, comm_id=self.comm_id, **keys), + parent=self.shell.get_parent(), ident=self.topic, )