Skip to content

Instantly share code, notes, and snippets.

@deed02392
Created July 22, 2017 23:34
Show Gist options
  • Save deed02392/7bac8dd1aafca94ba22b0515cc4cae0d to your computer and use it in GitHub Desktop.
Save deed02392/7bac8dd1aafca94ba22b0515cc4cae0d to your computer and use it in GitHub Desktop.
no urllib2.URLError property called 'code'
# send the request to pushover
try:
req = urllib2.Request(API_URL)
handle = urllib2.urlopen(req, data)
handle.close()
except urllib2.HTTPError as e:
logger.log(u'PUSHOVER: HTTPError: %s' % e.args, logger.ERROR)
except urllib2.URLError as e:
# HTTP status 404 if the provided email address isn't a Pushover user.
logger.log(u'PUSHOVER: URLError: %s' % e.reason, logger.ERROR)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment