[Zope3-checkins] CVS: Zope3/src/zope/app/browser/services/pluggableauth - __init__.py:1.4.18.1

Jim Fulton jim at zope.com
Mon Sep 8 15:21:59 EDT 2003


Update of /cvs-repository/Zope3/src/zope/app/browser/services/pluggableauth
In directory cvs.zope.org:/tmp/cvs-serv20092/src/zope/app/browser/services/pluggableauth

Modified Files:
      Tag: parentgeddon-branch
	__init__.py 
Log Message:
Checking in work in progress on parentgeddon-branch so Fred can help
me to get the tests passing.  Specific log entries will be provided
when we merge this into the head.


=== Zope3/src/zope/app/browser/services/pluggableauth/__init__.py 1.4 => 1.4.18.1 ===
--- Zope3/src/zope/app/browser/services/pluggableauth/__init__.py:1.4	Thu Jul 10 05:27:40 2003
+++ Zope3/src/zope/app/browser/services/pluggableauth/__init__.py	Mon Sep  8 14:21:28 2003
@@ -16,7 +16,6 @@
 $Id$
 """
 from zope.app.browser.services.service import Adding
-from zope.context import ContextSuper
 from zope.app.interfaces.services.pluggableauth import IPrincipalSource
 
 class PrincipalSourceAdding(Adding):
@@ -29,4 +28,4 @@
         if not IPrincipalSource.isImplementedBy(content):
             raise TypeError("%s is not a readable principal source" % content)
 
-        return ContextSuper(PrincipalSourceAdding, self).add(content)
+        return super(PrincipalSourceAdding, self).add(content)




More information about the Zope3-Checkins mailing list