From cf166531375b70a10f048ead795213dadb4dceee Mon Sep 17 00:00:00 2001 From: CensoredUsername Date: Fri, 30 Jun 2017 21:10:20 +0200 Subject: [PATCH] Fix an error in the error reporting code --- N_A_editor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/N_A_editor.py b/N_A_editor.py index fd20882..dd651d3 100644 --- a/N_A_editor.py +++ b/N_A_editor.py @@ -205,5 +205,5 @@ def main(): if __name__ == '__main__': try: main() - except Exception: + except Exception as e: messagebox.showerror("Whoops", "\n".join(e.args))