Remove deprecated https error catch

master
pictuga 2015-04-07 18:59:37 +08:00
parent 7a3b257328
commit ae062ebe90
1 changed files with 0 additions and 3 deletions

View File

@ -326,9 +326,6 @@ def Fetch(url, options):
except (HTTPError) as e:
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):
raise MorssException('Error downloading feed')