commit | 5da468f94adcf1eea2f1e29a668c82a34f4391df | [log] [tgz] |
---|---|---|
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | Tue Jan 04 17:15:52 2011 +0000 |
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | Tue Jan 04 17:15:52 2011 +0000 |
tree | 36690d1f0bc768e0b4915e3ebfc68f6266d8f8a3 | |
parent | ecebdc7469e73f9ca7d25b51df5a7840312e34ba [diff] |
Whitespace cleanup
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 @@ timeptr = localtime(&tt); if (timeptr == NULL) { PyErr_SetString(PyExc_ValueError, "unconvertible time"); - return NULL; + return NULL; } return _asctime(timeptr); }