[Zope-CVS] CVS: Products/CookieCrumbler - CookieCrumbler.py:1.14

Shane Hathaway shane@zope.com
Fri, 30 May 2003 09:38:53 -0400


Update of /cvs-repository/Products/CookieCrumbler
In directory cvs.zope.org:/tmp/cvs-serv3759

Modified Files:
	CookieCrumbler.py 
Log Message:
fixed a misspelled security declaration

=== Products/CookieCrumbler/CookieCrumbler.py 1.13 => 1.14 ===
--- Products/CookieCrumbler/CookieCrumbler.py:1.13	Mon Apr 28 17:16:22 2003
+++ Products/CookieCrumbler/CookieCrumbler.py	Fri May 30 09:38:52 2003
@@ -108,7 +108,7 @@
     def getCookieMethod( self, name='setAuthCookie', default=None ):
         return getattr( self.aq_inner.aq_parent, name, default )
 
-    security.declarePrivate('setDefaultAuthCookie')
+    security.declarePrivate('defaultSetAuthCookie')
     def defaultSetAuthCookie( self, resp, cookie_name, cookie_value ):
         resp.setCookie( cookie_name, cookie_value, path=self.getCookiePath())