summaryrefslogtreecommitdiffstats
path: root/Python/sysmodule.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-05-12 15:32:41 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-05-12 15:32:41 (GMT)
commitbaa2e562ce830d71440a77ab8865cae4763e89c1 (patch)
treeecd223828844f016ff711df194cd4cee837ca75d /Python/sysmodule.c
parent1dde177f826682668661eaf743926c6df70166f3 (diff)
downloadcpython-baa2e562ce830d71440a77ab8865cae4763e89c1.zip
cpython-baa2e562ce830d71440a77ab8865cae4763e89c1.tar.gz
cpython-baa2e562ce830d71440a77ab8865cae4763e89c1.tar.bz2
use our normal bracing style
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r--Python/sysmodule.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index 5f7c0eb..149b76e 100644
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -657,8 +657,9 @@ sys_set_coroutine_wrapper(PyObject *self, PyObject *wrapper)
}
PyEval_SetCoroutineWrapper(wrapper);
}
- else
+ else {
PyEval_SetCoroutineWrapper(NULL);
+ }
Py_RETURN_NONE;
}