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

This commit is contained in:
Tim Peters 2001-05-11 03:36:45 +00:00
parent 96d7a70630
commit 5acbfcc164
1 changed files with 1 additions and 1 deletions

View File

@ -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