Author: Carl Friedrich Bolz <[email protected]>
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):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to