summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cron/handler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cron/handler.py b/cron/handler.py
index 3652880..a4ea1f3 100644
--- a/cron/handler.py
+++ b/cron/handler.py
@@ -25,7 +25,7 @@ class GeshemUpdate():
self.session.auth = HttpNtlmAuth(*self.NTLM_AUTH)
def get_latest_images(self):
- imgres = self.session.get(self.BASE_URL)
+ imgres = self.session.get(self.BASE_URL, verify=False)
imgs = list(set(re.findall(r"radar280comp_\d+.png", imgres.text)))
return sorted(imgs)[-10:]