[Zope-CVS] CVS: Products/PluggableAuthService/interfaces - plugins.py:1.8

Zachery Bir zbir at urbanape.com
Wed Jul 6 14:48:03 EDT 2005


Update of /cvs-repository/Products/PluggableAuthService/interfaces
In directory cvs.zope.org:/tmp/cvs-serv28585

Modified Files:
	plugins.py 
Log Message:
Several 2.7/2.8 compatibility utilities


=== Products/PluggableAuthService/interfaces/plugins.py 1.7 => 1.8 ===
--- Products/PluggableAuthService/interfaces/plugins.py:1.7	Thu Oct 28 10:08:16 2004
+++ Products/PluggableAuthService/interfaces/plugins.py	Wed Jul  6 14:48:02 2005
@@ -17,7 +17,10 @@
 $Id$
 """
 
-from Interface import Interface
+try:
+    from zope.interface import Interface
+except ImportError:
+    from Interface import Interface
 
 class IExtractionPlugin( Interface ):
 



More information about the Zope-CVS mailing list