Catch URLError when uploading to Imgur

This commit is contained in:
JonnyWong16 2016-03-25 15:39:31 -07:00
parent 29db2e958f
commit fbf4a524c1

View file

@ -559,7 +559,7 @@ def uploadToImgur(imgPath, imgTitle=''):
logger.warn(u"PlexPy Helpers :: Unable to upload image to Imgur: %s" % response.reason)
else:
logger.warn(u"PlexPy Helpers :: Unable to upload image to Imgur.")
except urllib2.HTTPError as e:
except (urllib2.HTTPError, urllib2.URLError) as e:
logger.warn(u"PlexPy Helpers :: Unable to upload image to Imgur: %s" % e)
return img_url