You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mod_python-commits@quetz.apache.org by nl...@apache.org on 2005/05/01 12:27:16 UTC

svn commit: r165480 - /httpd/mod_python/trunk/Doc/modpython4.tex

Author: nlehuen
Date: Sun May  1 03:27:14 2005
New Revision: 165480

URL: http://svn.apache.org/viewcvs?rev=165480&view=rev
Log:
Documentation fix for MODPYTHON-42.

Modified:
    httpd/mod_python/trunk/Doc/modpython4.tex

Modified: httpd/mod_python/trunk/Doc/modpython4.tex
URL: http://svn.apache.org/viewcvs/httpd/mod_python/trunk/Doc/modpython4.tex?rev=165480&r1=165479&r2=165480&view=diff
==============================================================================
--- httpd/mod_python/trunk/Doc/modpython4.tex (original)
+++ httpd/mod_python/trunk/Doc/modpython4.tex Sun May  1 03:27:14 2005
@@ -1832,7 +1832,7 @@
 
 def handler(req):
     
-    cookies = Cookie.get_cookie(req, Cookie.MarshalCookie,
+    cookies = Cookie.get_cookies(req, Cookie.MarshalCookie,
                                     secret='secret007')
     if cookies.has_key('spam'):
         spamcookie = cookies['spam']