Skip to content

Commit 1e40692

Browse files
committed
Fix indentation
1 parent e25ed76 commit 1e40692

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/_io/iobase.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -948,8 +948,8 @@ _io__RawIOBase_read_impl(PyObject *self, Py_ssize_t n)
948948
if (bytes_filled < 0 || bytes_filled > n) {
949949
Py_DECREF(b);
950950
PyErr_Format(PyExc_ValueError,
951-
"readinto returned '%zd' oustside buffer size '%zd'",
952-
bytes_filled, n);
951+
"readinto returned '%zd' oustside buffer size '%zd'",
952+
bytes_filled, n);
953953
return NULL;
954954
}
955955

0 commit comments

Comments
 (0)