# HG changeset patch # User Marcin Kuzminski # Date 1286894968 -7200 # Node ID b0a411f5ec7056bc0b32c8263538b308c33b82f6 # Parent c1c1cf772337cd33dc3351d2436f794c8ade4540 fixed error message about cache settings diff -r c1c1cf772337 -r b0a411f5ec70 rhodecode/model/caching_query.py --- a/rhodecode/model/caching_query.py Tue Oct 12 16:39:53 2010 +0200 +++ b/rhodecode/model/caching_query.py Tue Oct 12 16:49:28 2010 +0200 @@ -109,11 +109,12 @@ return query def get_cache_region(name, region): - if region not in beaker.cache.cache_regions: - raise BeakerException('Cache region not configured: %s' % region) - kw = beaker.cache.cache_regions[region] - return beaker.cache.Cache._get_cache(name, kw) - + if region not in beaker.cache.cache_regions: + raise BeakerException('Cache region not configured: %s' + 'Check if proper cache settings are in the .ini files' % region) + kw = beaker.cache.cache_regions[region] + return beaker.cache.Cache._get_cache(name, kw) + def _get_cache_parameters(query): """For a query with cache_region and cache_namespace configured, return the correspoinding Cache instance and cache key, based