tabify :(
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c
index 19bb1a6..0cccca3 100644
--- a/Modules/_testcapimodule.c
+++ b/Modules/_testcapimodule.c
@@ -227,10 +227,10 @@
 
 	type = &_HashInheritanceTester_Type;
 
-        if (type->tp_dict != NULL)
-            /* The type has already been initialized. This probably means -R
-             is being used. */
-            Py_RETURN_NONE;
+	if (type->tp_dict != NULL)
+		/* The type has already been initialized. This probably means
+		   -R is being used. */
+		Py_RETURN_NONE;
 
 
 	obj = PyObject_New(PyObject, type);
@@ -276,7 +276,7 @@
 		return NULL;
 	}
 
-        Py_DECREF(obj);
+	Py_DECREF(obj);
 
 	Py_RETURN_NONE;
 }