Whitespace cleanup

This commit is contained in:
Alexander Belopolsky 2011-01-04 17:15:52 +00:00
parent ecebdc7469
commit 5da468f94a
1 changed files with 1 additions and 2 deletions

View File

@ -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);
}