##// END OF EJS Templates
BUG: Minor typo in history_console_widget.py
Puneeth Chaganti -
Show More
@@ -217,7 +217,7 b' class HistoryConsoleWidget(ConsoleWidget):'
217 """ Handles replies for code execution, here only session history length
217 """ Handles replies for code execution, here only session history length
218 """
218 """
219 msg_id = msg['parent_header']['msg_id']
219 msg_id = msg['parent_header']['msg_id']
220 info = self._request_info.get['execute'].pop(msg_id,None)
220 info = self._request_info['execute'].pop(msg_id,None)
221 if info and info.kind == 'save_magic' and not self._hidden:
221 if info and info.kind == 'save_magic' and not self._hidden:
222 content = msg['content']
222 content = msg['content']
223 status = content['status']
223 status = content['status']
General Comments 0
You need to be logged in to leave comments. Login now