Skip to content

Commit

Permalink
Merge pull request #89 from simonbyrne/patch-1
Browse files Browse the repository at this point in the history
Fix execute for Julia notebooks
  • Loading branch information
Carreau committed Aug 25, 2015
2 parents b503683 + 30610a6 commit 1501290
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nbconvert/preprocessors/execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def run_cell(self, cell):
" for details.")

if msg['parent_header'].get('msg_id') == msg_id:
if msg['metadata']['status'] == 'error' and not self.allow_errors:
if msg['content']['status'] == 'error' and not self.allow_errors:
raise CellExecutionError(msg['content']['traceback'])
else:
break
Expand Down

0 comments on commit 1501290

Please sign in to comment.