summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mako/cache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mako/cache.py b/mako/cache.py
index 4a02554..b64e94f 100644
--- a/mako/cache.py
+++ b/mako/cache.py
@@ -62,10 +62,10 @@ class Cache(object):
def __init__(self, template):
self.template = template
- self.impl = self._load_impl(self.template.cache_impl)
self.id = template.module.__name__
self.starttime = template.module._modified_time
self._def_regions = {}
+ self.impl = self._load_impl(self.template.cache_impl)
def _load_impl(self, name):
return _cache_plugins.load(name)(self)