From 2cee0fe23f84a1e6ccd7078098df2c5ffbe0378f Mon Sep 17 00:00:00 2001 From: Martin Michlmayr Date: Sun, 18 May 2014 09:51:32 -0400 Subject: Cosmetic change - format code consistently Add a space between if and the opening bracket, between a closing round bracket and the following opening curly bracket, etc. --- src/py_times.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/py_times.cc') diff --git a/src/py_times.cc b/src/py_times.cc index 44a6f3cd..c210889d 100644 --- a/src/py_times.cc +++ b/src/py_times.cc @@ -108,7 +108,7 @@ struct datetime_from_python static void* convertible(PyObject* obj_ptr) { MY_PyDateTime_IMPORT; - if(PyDateTime_Check(obj_ptr)) return obj_ptr; + if (PyDateTime_Check(obj_ptr)) return obj_ptr; return 0; } -- cgit v1.2.3