##// END OF EJS Templates
clear _reply_content cache before using it...
MinRK -
Show More
@@ -383,8 +383,9 b' class Kernel(Configurable):'
383 self._publish_pyin(code, parent, shell.execution_count)
383 self._publish_pyin(code, parent, shell.execution_count)
384
384
385 reply_content = {}
385 reply_content = {}
386 # FIXME: the shell calls the exception handler itself.
387 shell._reply_content = None
386 try:
388 try:
387 # FIXME: the shell calls the exception handler itself.
388 shell.run_cell(code, store_history=store_history, silent=silent)
389 shell.run_cell(code, store_history=store_history, silent=silent)
389 except:
390 except:
390 status = u'error'
391 status = u'error'
General Comments 0
You need to be logged in to leave comments. Login now