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