From e192e7e02452c70511f688582d8d95d0a6267ee5 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 29 Jun 2007 08:59:26 +0000 Subject: remove unneeded checks from the python API --- source/blender/python/api2_2x/Ipo.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'source/blender/python/api2_2x/Ipo.c') diff --git a/source/blender/python/api2_2x/Ipo.c b/source/blender/python/api2_2x/Ipo.c index 45b6f8a2c79..a6077071ccb 100644 --- a/source/blender/python/api2_2x/Ipo.c +++ b/source/blender/python/api2_2x/Ipo.c @@ -806,13 +806,7 @@ static PyObject *M_Ipo_Recalc( PyObject * self_unused, PyObject * value ) /*****************************************************************************/ static PyObject *Ipo_getBlocktype( BPy_Ipo * self ) { - PyObject *attr = PyInt_FromLong( self->ipo->blocktype ); - - if( attr ) - return attr; - - return EXPP_ReturnPyObjError( PyExc_RuntimeError, - "couldn't get Ipo.blocktype attribute" ); + return PyInt_FromLong( self->ipo->blocktype ); } static int Ipo_setBlocktype( BPy_Ipo * self, PyObject * args ) -- cgit v1.2.3