diff --git a/lib/util/cache.py b/lib/util/cache.py index b0c370a035..c6f11f7d66 100644 --- a/lib/util/cache.py +++ b/lib/util/cache.py @@ -11,6 +11,6 @@ from django.core import cache # to returning the default cache. This will happen with dev machines. try: cache = cache.get_cache('general') -except ValueError: +except Exception: cache = cache.cache