fixed issue 1121, appadmin interface to cache, thanks Paolo

This commit is contained in:
mdipierro
2012-10-29 08:57:43 -05:00
parent aa149d2e7b
commit 8332106754
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.2.1 (2012-10-29 08:53:44) stable
Version 2.2.1 (2012-10-29 08:57:40) stable
+2
View File
@@ -147,6 +147,7 @@ class CacheInRam(CacheAbstract):
def __init__(self, request=None):
self.initialized = False
self.request = request
self.storage = {}
def initialize(self):
if self.initialized:
@@ -303,6 +304,7 @@ class CacheOnDisk(CacheAbstract):
self.initialized = False
self.request = request
self.folder = folder
self.storage = {}
def initialize(self):
if self.initialized: