diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2011-01-04 17:15:52 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2011-01-04 17:15:52 (GMT) |
commit | 5da468f94adcf1eea2f1e29a668c82a34f4391df (patch) | |
tree | 36690d1f0bc768e0b4915e3ebfc68f6266d8f8a3 /Modules | |
parent | ecebdc7469e73f9ca7d25b51df5a7840312e34ba (diff) | |
download | cpython-5da468f94adcf1eea2f1e29a668c82a34f4391df.zip cpython-5da468f94adcf1eea2f1e29a668c82a34f4391df.tar.gz cpython-5da468f94adcf1eea2f1e29a668c82a34f4391df.tar.bz2 |
Whitespace cleanup
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/timemodule.c | 3 |
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); } |