Skip to content

Instantly share code, notes, and snippets.

@saxbophone
Created February 11, 2016 12:30
Show Gist options
  • Save saxbophone/4b58114f44f03c1b1e1f to your computer and use it in GitHub Desktop.
Save saxbophone/4b58114f44f03c1b1e1f to your computer and use it in GitHub Desktop.
The one exception handler
import urllib
import webbrowser
try:
thing()
except Exception as E:
webbrowser.open(
'http://stackoverflow.com/search?q={}'.format(
urllib.quote_plus('{} {}'.format(E.__class__.__name__, E.message))
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment