]> granicus.if.org Git - python/commitdiff
Cosmetic: code under "else" clause was missing indent.
authorTim Peters <tim.peters@gmail.com>
Fri, 11 May 2001 03:36:45 +0000 (03:36 +0000)
committerTim Peters <tim.peters@gmail.com>
Fri, 11 May 2001 03:36:45 +0000 (03:36 +0000)
Objects/object.c

index c6d05915b2c44d311ba62fbb77601b035c8a7857..846297170c036ba5688c3fceae122a1e96721e17 100644 (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