diff --git a/source/blender/python/api2_2x/Scene.c b/source/blender/python/api2_2x/Scene.c index cc4536cea14..273a512c232 100644 --- a/source/blender/python/api2_2x/Scene.c +++ b/source/blender/python/api2_2x/Scene.c @@ -908,9 +908,7 @@ static PyObject *Scene_GetAttr (BPy_Scene *self, char *name) attr = PyString_FromString(self->scene->id.name+2); else if (strcmp(name, "__members__") == 0) { - attr = Py_BuildValue("[s,s,s,s,s,s,s,s,s]", - "name", "type", "mode", "lens", "clipStart", - "clipEnd", "drawSize", "Types", "Modes"); + attr = Py_BuildValue("[s]", "name"); } if (!attr)