Created
July 22, 2017 23:34
-
-
Save deed02392/7bac8dd1aafca94ba22b0515cc4cae0d to your computer and use it in GitHub Desktop.
no urllib2.URLError property called 'code'
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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