Skip to content

Commit

Permalink
Fix reference to self and not renpy.config.
Browse files Browse the repository at this point in the history
  • Loading branch information
renpytom committed Oct 16, 2019
1 parent e7a7277 commit 7754db3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion renpy/execution.py
Expand Up @@ -589,7 +589,7 @@ def run(self, node=None):
self.exception_handler(short, full, traceback_fn)
handled = True
elif renpy.config.exception_handler is not None:
handled = self.exception_handler(short, full, traceback_fn)
handled = renpy.config.exception_handler(short, full, traceback_fn)

if not handled:
if renpy.display.error.report_exception(short, full, traceback_fn):
Expand Down

0 comments on commit 7754db3

Please sign in to comment.