From 5da468f94adcf1eea2f1e29a668c82a34f4391df Mon Sep 17 00:00:00 2001 From: Alexander Belopolsky Date: Tue, 4 Jan 2011 17:15:52 +0000 Subject: Whitespace cleanup --- Modules/timemodule.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Modules/timemodule.c b/Modules/timemodule.c index 29a2f2d..ebc2b81 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -1,4 +1,3 @@ - /* Time module */ #include "Python.h" @@ -683,7 +682,7 @@ time_ctime(PyObject *self, PyObject *args) timeptr = localtime(&tt); if (timeptr == NULL) { PyErr_SetString(PyExc_ValueError, "unconvertible time"); - return NULL; + return NULL; } return _asctime(timeptr); } -- cgit v0.12