Commit 04a7ea32 authored by Claude Paroz's avatar Claude Paroz
Browse files

Removed an impossible code path in cache function

parent 34162698
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -93,8 +93,6 @@ def parse_backend_conf(backend, **kwargs):
            raise InvalidCacheBackendError("Could not find backend '%s'" % backend)
        location = kwargs.pop('LOCATION', '')
        return backend, location, kwargs
    raise InvalidCacheBackendError(
        "Couldn't find a cache backend named '%s'" % backend)

def get_cache(backend, **kwargs):
    """