Fix not set optional python parameter

This commit is contained in:
jriegel 2014-02-16 20:01:45 +01:00
parent 0fbe570f9e
commit 5c3187da85

View File

@ -149,7 +149,7 @@ PyObject* MeshPy::write(PyObject *args)
{
const char* Name;
char* Ext=0;
char* ObjName;
char* ObjName=0;
if (!PyArg_ParseTuple(args, "s|ss",&Name,&Ext,&ObjName))
return NULL;