This commit is contained in:
Kovid Goyal 2017-08-31 07:05:45 +05:30
parent 59bb0f8e55
commit 08471c12a4
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -36,3 +36,8 @@ class Harpers(BasicNewsRecipe):
remove_attributes = ['width', 'height']
feeds = [(u"Harper's Magazine", u'http://harpers.org/feed/')]
def get_browser(self):
# harpers ssl certificate is broken as of Jul 2017
br = BasicNewsRecipe.get_browser(self, verify_ssl_certificates=False)
return br