[pypy-commit] pypy default: fix untested commit to default

mattip noreply at buildbot.pypy.org
Thu Sep 11 23:08:10 CEST 2014


Author: mattip <matti.picus at gmail.com>
Branch: 
Changeset: r73483:e4b10708718c
Date: 2014-09-12 00:07 +0300
http://bitbucket.org/pypy/pypy/changeset/e4b10708718c/

Log:	fix untested commit to default

diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_ssl/interp_ssl.py
--- a/pypy/module/_ssl/interp_ssl.py
+++ b/pypy/module/_ssl/interp_ssl.py
@@ -775,7 +775,7 @@
             else:
                 r, w, e = rpoll.select([sock_fd], [], [], sock_timeout)
                 ready = r
-        except SelectError, e:
+        except rpoll.SelectError as e:
             message = e.get_msg()
             raise ssl_error(space, message, e.errno)
     if ready:


More information about the pypy-commit mailing list