diff options
Diffstat (limited to 'cron/handler.py')
| -rw-r--r-- | cron/handler.py | 2 |
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:] |
