From cae8dfc390665e6afd5205854e3643aeead9e3cd Mon Sep 17 00:00:00 2001 From: Zhenqing Date: Thu, 29 Nov 2018 06:09:37 -0500 Subject: [PATCH] Fix the issue of empty result on newer IPython --- pweave/processors/jupyter.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pweave/processors/jupyter.py b/pweave/processors/jupyter.py index 6211bfc..d3fabf0 100644 --- a/pweave/processors/jupyter.py +++ b/pweave/processors/jupyter.py @@ -120,6 +120,8 @@ def run_cell(self, src): continue elif msg_type.startswith('comm'): continue + elif msg_type == 'execute_reply': + continue try: out = output_from_msg(msg)