-- remove unused variable "dict" which was giving compiler warnings.

This commit is contained in:
Ken Hughes 2005-12-05 01:07:24 +00:00
parent bc16c3bd7a
commit 00ce7c629f

@ -234,7 +234,7 @@ static PyObject *Blender_Set( PyObject * self, PyObject * args )
/*****************************************************************************/
static PyObject *Blender_Get( PyObject * self, PyObject * args )
{
PyObject *ret = NULL, *dict = NULL;
PyObject *ret = NULL;
char *str = NULL;
if( !PyArg_ParseTuple( args, "s", &str ) )