summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-05-11 03:36:45 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-05-11 03:36:45 (GMT)
commit5acbfcc1645fbaecff987460c4933731466d8d64 (patch)
treeeda014d395f9f74c57a5b092eb0dd85688f6e7ce /Objects/object.c
parent96d7a70630e5b59ece873cc5336d212c9e5b4834 (diff)
downloadcpython-5acbfcc1645fbaecff987460c4933731466d8d64.zip
cpython-5acbfcc1645fbaecff987460c4933731466d8d64.tar.gz
cpython-5acbfcc1645fbaecff987460c4933731466d8d64.tar.bz2
Cosmetic: code under "else" clause was missing indent.
Diffstat (limited to 'Objects/object.c')
-rw-r--r--Objects/object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c
index c6d0591..8462971 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -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