bug fix in memcached session handling: avoid overwriting/clearing old session data when data with another package name are stored

This commit is contained in:
Helmut Merz 2011-08-25 11:51:44 +02:00
parent 0732f956c2
commit 2855459520

View file

@ -52,7 +52,6 @@ class SessionDataContainer(object):
newValue = oldValue
else:
newValue = value
#print '***', oldValue, value, newValue
client.set(newValue, key, lifetime=self.lifetime, ns=self.namespace)