[pypy-svn] r43945 - pypy/branch/kill-ctypes/pypy/module/termios

fijal at codespeak.net fijal at codespeak.net
Thu May 31 17:52:57 CEST 2007


Author: fijal
Date: Thu May 31 17:52:57 2007
New Revision: 43945

Modified:
   pypy/branch/kill-ctypes/pypy/module/termios/interp_termios.py
Log:
typo


Modified: pypy/branch/kill-ctypes/pypy/module/termios/interp_termios.py
==============================================================================
--- pypy/branch/kill-ctypes/pypy/module/termios/interp_termios.py	(original)
+++ pypy/branch/kill-ctypes/pypy/module/termios/interp_termios.py	Thu May 31 17:52:57 2007
@@ -45,7 +45,7 @@
         except termios.error, e:
             e.errno = e.args[0]
             raise convert_error(space, e)
-    except OperationError:
+    except OperationError, e:
         if not e.match(space, space.w_TypeError):
             raise
         msg = "tcsetattr must be called with int, int and 7-arg tuple"



More information about the Pypy-commit mailing list