Remove deprecated https error catch
parent
7a3b257328
commit
ae062ebe90
|
@ -326,9 +326,6 @@ def Fetch(url, options):
|
||||||
except (HTTPError) as e:
|
except (HTTPError) as e:
|
||||||
raise MorssException('Error downloading feed (HTTP Error %s)' % e.code)
|
raise MorssException('Error downloading feed (HTTP Error %s)' % e.code)
|
||||||
|
|
||||||
except (crawler.InvalidCertificateException) as e:
|
|
||||||
raise MorssException('Error downloading feed (Invalid SSL Certificate)')
|
|
||||||
|
|
||||||
except (IOError, HTTPException):
|
except (IOError, HTTPException):
|
||||||
raise MorssException('Error downloading feed')
|
raise MorssException('Error downloading feed')
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue