[Zope3-checkins] SVN: zope.testing/trunk/setup.py There's no such thing as ImportException. Looks like

Tim Peters tim.one at comcast.net
Thu Apr 27 15:34:43 EDT 2006


Log message for revision 67660:
  There's no such thing as ImportException.  Looks like
  ImportError was intended.
  

Changed:
  U   zope.testing/trunk/setup.py

-=-
Modified: zope.testing/trunk/setup.py
===================================================================
--- zope.testing/trunk/setup.py	2006-04-27 19:32:21 UTC (rev 67659)
+++ zope.testing/trunk/setup.py	2006-04-27 19:34:42 UTC (rev 67660)
@@ -20,7 +20,7 @@
 
 try:
     from setuptools import setup
-except ImportException, e:
+except ImportError, e:
     from distutils.core import setup
     
 setup(name='zope.testing',



More information about the Zope3-Checkins mailing list