Skip to content

Commit

Permalink
Calls super constructor in CellExecutionError.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matej Urbas authored Jan 27, 2017
1 parent 605bac3 commit 6ff7e8d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions nbconvert/preprocessors/execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ class CellExecutionError(ConversionException):
failures gracefully.
"""
def __init__(self, traceback):
super(CellExecutionError, self).__init__(traceback)
self.traceback = traceback

def __str__(self):
Expand Down

0 comments on commit 6ff7e8d

Please sign in to comment.