changeset 610:b0a411f5ec70

fixed error message about cache settings
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 12 Oct 2010 16:49:28 +0200
parents c1c1cf772337
children 79457e03ef68
files rhodecode/model/caching_query.py
diffstat 1 files changed, 6 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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