From 09ac89ae78a4977af6eda4b0e0c396f577220bd2 Mon Sep 17 00:00:00 2001 From: Jeremy Hylton Date: Mon, 29 Jan 2001 22:38:32 +0000 Subject: fix indentation glitch --- Objects/classobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/classobject.c b/Objects/classobject.c index 60214a4..ed79da5 100644 --- a/Objects/classobject.c +++ b/Objects/classobject.c @@ -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; } -- cgit v0.12