Skip to content

Commit

Permalink
Error in Session.send_raw()
Browse files Browse the repository at this point in the history
Addresses issue ipython/ipython/ipython#4839.
  • Loading branch information
dsblank committed Jan 21, 2014
1 parent dea60d4 commit 425b822
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IPython/kernel/zmq/session.py
Expand Up @@ -679,7 +679,7 @@ def send_raw(self, stream, msg_list, flags=0, copy=True, ident=None):
to_send.append(DELIM)
to_send.append(self.sign(msg_list))
to_send.extend(msg_list)
stream.send_multipart(msg_list, flags, copy=copy)
stream.send_multipart(to_send, flags, copy=copy)

def recv(self, socket, mode=zmq.NOBLOCK, content=True, copy=True):
"""Receive and unpack a message.
Expand Down

0 comments on commit 425b822

Please sign in to comment.