Revision: 240
Author: ericsk
Date: Wed Dec 2 19:25:55 2009
Log: Fix Issue #49
http://code.google.com/p/google-app-engine-oil/source/detail?r=240
Modified:
/trunk/oildrum/gaeo/session/memcache.py
=======================================
--- /trunk/oildrum/gaeo/session/memcache.py Sun Aug 30 22:51:04 2009
+++ /trunk/oildrum/gaeo/session/memcache.py Wed Dec 2 19:25:55 2009
@@ -51,7 +51,7 @@
# not in the cookie, set it
- cookie = '%s=%s' % (name, self._id)
+ cookie = '%s=%s; path=/' % (name, self._id)
hnd.response.headers.add_header('Set-Cookie', cookie)
def put(self):