From 75c2bd460529a3bd31cb5f3ea42861a53e40d51c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 4 Jul 2017 23:02:37 +0530 Subject: [PATCH] Ignore SSL errors on harpers since the harpers certificate chain is incomplete making it impossible to verify --- recipes/harpers_full.recipe | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/recipes/harpers_full.recipe b/recipes/harpers_full.recipe index e52062a8ee..52b816bcfd 100644 --- a/recipes/harpers_full.recipe +++ b/recipes/harpers_full.recipe @@ -56,7 +56,8 @@ class Harpers_full(BasicNewsRecipe): remove_attributes = ['xmlns'] def get_browser(self): - br = BasicNewsRecipe.get_browser(self) + # harpers ssl certificate is broken as of Jul 2017 + br = BasicNewsRecipe.get_browser(self, verify_ssl_certificates=False) br.open('https://harpers.org/') if self.username is not None and self.password is not None: tt = time.localtime() * 1000