summaryrefslogtreecommitdiffstats
path: root/Modules/timemodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/timemodule.c')
-rw-r--r--Modules/timemodule.c3
1 files changed, 1 insertions, 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);
}