Skip to content

Commit

Permalink
Fix not set optional python parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
jriegel committed Feb 16, 2014
1 parent 0fbe570 commit 5c3187d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Mesh/App/MeshPyImp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 5c3187d

Please sign in to comment.