driscollis / applications_with_wxpython

Code examples for the book, Creating GUI Application with wxPython
https://www.blog.pythonlibrary.org
116 stars 26 forks source link

Chapter 9 - Warning: E722 Do not use bare except #17

Closed cmcknight closed 5 years ago

cmcknight commented 5 years ago

Python linter gives a warning about the bare except.

I would suggest replacing all bare excepts with:

except BaseException:

because that is at the top of the Exceptions hierarchy.

driscollis commented 5 years ago

Okay. I just updated the code