summaryrefslogtreecommitdiff
path: root/Python/sysmodule.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-05-12 11:32:41 -0400
committerBenjamin Peterson <benjamin@python.org>2015-05-12 11:32:41 -0400
commit096d40afdee98338a16811681c687475fa52c6c0 (patch)
treef8ae835399cf2633b68a77dccff748e955e4202f /Python/sysmodule.c
parent77a04205150a46220b09d9ef8106d0f5667e4558 (diff)
downloadcpython-096d40afdee98338a16811681c687475fa52c6c0.tar.gz
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 5f7c0ebba6..149b76eea7 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;
}