]> granicus.if.org Git - python/commitdiff
Whitespace cleanup
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>
Tue, 4 Jan 2011 17:15:52 +0000 (17:15 +0000)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>
Tue, 4 Jan 2011 17:15:52 +0000 (17:15 +0000)
Modules/timemodule.c

index 29a2f2dc998c29d7e6e20a09db9c0135a6778a27..ebc2b814bc747e1f3d42f07d72005a6142bc90e0 100644 (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);
 }