fix indentation glitch

This commit is contained in:
Jeremy Hylton 2001-01-29 22:38:32 +00:00
parent 2d339f9369
commit 09ac89ae78
1 changed files with 1 additions and 1 deletions

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