use our normal bracing style

This commit is contained in:
Benjamin Peterson 2015-05-12 11:32:41 -04:00
parent 1dde177f82
commit baa2e562ce
1 changed files with 2 additions and 1 deletions

View File

@ -657,8 +657,9 @@ sys_set_coroutine_wrapper(PyObject *self, PyObject *wrapper)
}
PyEval_SetCoroutineWrapper(wrapper);
}
else
else {
PyEval_SetCoroutineWrapper(NULL);
}
Py_RETURN_NONE;
}