fixed issue 1697:gae memcached is not storing anything, thanks Yair

This commit is contained in:
mdipierro
2013-10-03 08:40:19 -05:00
parent 46903a3732
commit 5be65e8bd4
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.6.4-stable+timestamp.2013.10.03.08.36.35
Version 2.6.4-stable+timestamp.2013.10.03.08.39.06
+2 -2
View File
@@ -62,10 +62,10 @@ class MemcacheClient(object):
return self.client.delete(*a, **b)
def get(self, *a, **b):
return self.client.delete(*a, **b)
return self.client.get(*a, **b)
def set(self, *a, **b):
return self.client.delete(*a, **b)
return self.client.set(*a, **b)
def flush_all(self, *a, **b):
return self.client.delete(*a, **b)