Author: Matti Picus <[email protected]>
Branch: py3k
Changeset: r56039:8bf8a3702d6f
Date: 2012-07-12 15:10 +0300
http://bitbucket.org/pypy/pypy/changeset/8bf8a3702d6f/

Log:    py3k syntax fix

diff --git a/pypy/conftest.py b/pypy/conftest.py
--- a/pypy/conftest.py
+++ b/pypy/conftest.py
@@ -78,7 +78,7 @@
     """
     try:
         config = make_config(option, objspace=name, **kwds)
-    except ConflictConfigError, e:
+    except ConflictConfigError as e:
         # this exception is typically only raised if a module is not available.
         # in this case the test should be skipped
         py.test.skip(str(e))
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to