Skip to content

Commit

Permalink
Rename history_tail_reply back to history_reply.
Browse files Browse the repository at this point in the history
  • Loading branch information
takluyver committed May 3, 2011
1 parent 5be0cc4 commit 0d95ce8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion IPython/frontend/qt/console/ipython_widget.py
Expand Up @@ -160,7 +160,7 @@ def _handle_execute_reply(self, msg):
else:
super(IPythonWidget, self)._handle_execute_reply(msg)

def _handle_history_tail_reply(self, msg):
def _handle_history_reply(self, msg):
""" Implemented to handle history tail replies, which are only supported
by the IPython kernel.
"""
Expand Down
2 changes: 1 addition & 1 deletion IPython/frontend/qt/kernelmanager.py
Expand Up @@ -46,7 +46,7 @@ class QtXReqSocketChannel(SocketChannelQObject, XReqSocketChannel):
execute_reply = QtCore.Signal(object)
complete_reply = QtCore.Signal(object)
object_info_reply = QtCore.Signal(object)
history_tail_reply = QtCore.Signal(object)
history_reply = QtCore.Signal(object)

# Emitted when the first reply comes back.
first_reply = QtCore.Signal()
Expand Down
2 changes: 1 addition & 1 deletion IPython/zmq/ipkernel.py
Expand Up @@ -348,7 +348,7 @@ def history_request(self, ident, parent):
else:
hist = []
content = {'history' : list(hist)}
msg = self.session.send(self.reply_socket, 'history_tail_reply',
msg = self.session.send(self.reply_socket, 'history_reply',
content, parent, ident)
logger.debug(str(msg))

Expand Down

0 comments on commit 0d95ce8

Please sign in to comment.