diff --git a/jupyter_nbconvert/preprocessors/execute.py b/jupyter_nbconvert/preprocessors/execute.py index b8c3dce..46da10c 100644 --- a/jupyter_nbconvert/preprocessors/execute.py +++ b/jupyter_nbconvert/preprocessors/execute.py @@ -130,6 +130,8 @@ class ExecutePreprocessor(Preprocessor): elif msg_type == 'clear_output': outs = [] continue + elif msg_type.startswith('comm'): + continue try: out = output_from_msg(msg)