[Checkins] SVN: zope.testing/branches/regebro-python3/setup.py respell a try/except (py3 compat)

Wolfgang Schnerring wosc at wosc.de
Sun Sep 13 04:26:30 EDT 2009


Log message for revision 103879:
  respell a try/except (py3 compat)
  

Changed:
  U   zope.testing/branches/regebro-python3/setup.py

-=-
Modified: zope.testing/branches/regebro-python3/setup.py
===================================================================
--- zope.testing/branches/regebro-python3/setup.py	2009-09-13 08:21:57 UTC (rev 103878)
+++ zope.testing/branches/regebro-python3/setup.py	2009-09-13 08:26:29 UTC (rev 103879)
@@ -34,7 +34,7 @@
         include_package_data = True,
         zip_safe = False,
         )
-except ImportError, e:
+except ImportError:
     from distutils.core import setup
     extra = {}
 



More information about the checkins mailing list