Skip to content

Commit 2decc95

Browse files
committed
post-merge
1 parent 20a9c1b commit 2decc95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/_cursesmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1880,8 +1880,8 @@ PyCursesWindow_getstr(PyObject *op, PyObject *args)
18801880
Py_BEGIN_ALLOW_THREADS
18811881
#ifdef STRICT_SYSV_CURSES
18821882
rtn = wmove(self->win, y, x) == ERR
1883-
? ERR
1884-
: wgetnstr(self->win, buf, n);
1883+
? ERR
1884+
: wgetnstr(self->win, buf, n);
18851885
#else
18861886
rtn = mvwgetnstr(self->win, y, x, buf, n);
18871887
#endif

0 commit comments

Comments
 (0)