[pypy-commit] pypy py3.5: fix syntax error

cfbolz pypy.commits at gmail.com
Thu Jul 27 08:53:32 EDT 2017


Author: Carl Friedrich Bolz <cfbolz at gmx.de>
Branch: py3.5
Changeset: r91975:ad2a4cd1e7a7
Date: 2017-07-27 14:51 +0200
http://bitbucket.org/pypy/pypy/changeset/ad2a4cd1e7a7/

Log:	fix syntax error

	(bad armin, no cookie)

diff --git a/lib_pypy/_curses.py b/lib_pypy/_curses.py
--- a/lib_pypy/_curses.py
+++ b/lib_pypy/_curses.py
@@ -411,7 +411,7 @@
             val = lib.mvwget_wch(self._win, *args, wch)
         else:
             raise error("get_wch requires 0 or 2 arguments")
-        _check_ERR(val, "get_wch"):
+        _check_ERR(val, "get_wch")
         return wch[0]
 
     def getkey(self, *args):


More information about the pypy-commit mailing list