diff options
| author | Yuval Adam <_@yuv.al> | 2022-08-21 15:08:57 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2022-08-21 15:08:57 +0300 |
| commit | 3c0fce7319f4e4ae076527eb98e6164210bdb34c (patch) | |
| tree | ade0146f11659bb3cbd7104a0cbecd467e38d47c /cron/handler.py | |
| parent | a4850826306d20682a1e78a5cf5bfaef158532af (diff) | |
Do not verify SSL certs
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:] |
