diff --git a/flatisfy/filters/cache.py b/flatisfy/filters/cache.py index 9f28143..2b60d65 100644 --- a/flatisfy/filters/cache.py +++ b/flatisfy/filters/cache.py @@ -120,7 +120,7 @@ class ImageCache(MemoryCache): if self.storage_dir: image.save(filepath, format=image.format) return image - except (requests.HTTPError, requests.exceptions.MissingSchema, IOError): + except (requests.HTTPError, IOError): return None def __init__(self, max_items=200, storage_dir=None):