]> granicus.if.org Git - python/commitdiff
fix indentation glitch
authorJeremy Hylton <jeremy@alum.mit.edu>
Mon, 29 Jan 2001 22:38:32 +0000 (22:38 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Mon, 29 Jan 2001 22:38:32 +0000 (22:38 +0000)
Objects/classobject.c

index 60214a44226608bda984286d57e987fc8096f358..ed79da5031e15ce3d1e3d482a556ece83434b81e 100644 (file)
@@ -626,7 +626,7 @@ instance_getattr2(register PyInstanceObject *inst, PyObject *name)
        if (class != NULL) {
                if (PyFunction_Check(v)) {
                        PyObject *w = PyMethod_New(v, (PyObject *)inst,
-                                                           (PyObject *)class);
+                                                  (PyObject *)class);
                        Py_DECREF(v);
                        v = w;
                }