Skip to content

Commit

Permalink
Fix an error in the error reporting code
Browse files Browse the repository at this point in the history
  • Loading branch information
CensoredUsername committed Jun 30, 2017
1 parent ef0e9d8 commit cf16653
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion N_A_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,5 +205,5 @@ def main():
if __name__ == '__main__':
try:
main()
except Exception:
except Exception as e:
messagebox.showerror("Whoops", "\n".join(e.args))

0 comments on commit cf16653

Please sign in to comment.