Commit 5acbfcc1 authored by Tim Peters's avatar Tim Peters

Cosmetic: code under "else" clause was missing indent.

parent 96d7a706
......@@ -1052,7 +1052,7 @@ PyObject_GetAttr(PyObject *v, PyObject *name)
if (v->ob_type->tp_getattro != NULL)
return (*v->ob_type->tp_getattro)(v, name);
else
return PyObject_GetAttrString(v, PyString_AS_STRING(name));
return PyObject_GetAttrString(v, PyString_AS_STRING(name));
}
int
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment