fixed bug in mem(e)cache

This commit is contained in:
mdipierro
2012-09-13 06:58:45 -05:00
parent 9cca0dcce8
commit 1db243e236
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.0.8 (2012-09-13 06:55:52) stable
Version 2.0.8 (2012-09-13 06:58:42) stable
+1 -1
View File
@@ -17,7 +17,7 @@ DEFAULT_TIME_EXPIRE = 300 # seconds (must be the same as cache.ram)
def MemcacheClient(*a, **b):
if not hasattr(current,'__mc_instance'):
current.__memcache_client = MemcacheClientObj(*a, **b)
return current.__memecache_client
return current.__memcache_client
class MemcacheClientObj(Client):