1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-18 20:11:20 +00:00

Don't use shell_channel in ipynb_exporter result processor

It's not needed for IPython 2 and it breaks in IPython 3
This commit is contained in:
Javi Merino 2015-04-16 18:37:21 +01:00
parent f41be396fa
commit f54bb0981f

View File

@ -48,7 +48,7 @@ elif IPython:
def run_cell(kernel_client, cell):
"""Run a cell of a notebook in an ipython kernel and return its output"""
kernel_client.shell_channel.execute(cell.input)
kernel_client.execute(cell.input)
outs = []
while True: