Two typo bugs in sessions.py

7 views
Skip to first unread message

Jagan

unread,
Jun 17, 2010, 7:19:41 AM6/17/10
to appengine-utilities
Hi

There are 2 typo bugs in sessions.py. Both are extra buggy character
near the format string %.

Line 232:

Is:
mc = memcache.get(u"_AppEngineUtilities_Session_%s" %+ \

Should be:


mc = memcache.get(u"_AppEngineUtilities_Session_%s" % \

Line 862:

Is:

self.output_cookie["%s_data" %s (self.cookie_name)] = \

Should be:

self.output_cookie["%s_data" % (self.cookie_name)] = \

--
Thanks
Jagan

Joe Bowman

unread,
Jun 17, 2010, 9:09:52 AM6/17/10
to appengine-utilities
I got the first one you mentioned just now, the second was already
fixed in the master branch.

If in the future you could use the issue tracker on github, it would
be helpful. Thank you.
Reply all
Reply to author
Forward
0 new messages