diff --git a/zutil/rcache.py b/zutil/rcache.py index f6351fd..d357da2 100644 --- a/zutil/rcache.py +++ b/zutil/rcache.py @@ -28,7 +28,7 @@ INVALID = object() def caching(self, method, id): annot = self.request.annotations - item = annot.setdefault('cybertools.util.rcache', {}) + item = annot.setdefault('cybertools.zutil.rcache', {}) value = item.get(id, INVALID) if value is INVALID: value = method()