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 84a4071..3652880 100644 --- a/cron/handler.py +++ b/cron/handler.py @@ -27,7 +27,7 @@ class GeshemUpdate(): def get_latest_images(self): imgres = self.session.get(self.BASE_URL) imgs = list(set(re.findall(r"radar280comp_\d+.png", imgres.text))) - return sorted(imgs[-10:]) + return sorted(imgs)[-10:] def get_latest_bucket_keys(self): latest_keys = [] |
