summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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