correct spelling StanardHypotheses to StandardHypotheses

This commit is contained in:
qingfengxia
2016-08-07 18:20:17 +01:00
parent b789f1e36f
commit d243fea366
4 changed files with 5 additions and 5 deletions

View File

@@ -152,13 +152,13 @@ PyObject* FemMeshPy::addHypothesis(PyObject *args)
Py_Return;
}
PyObject* FemMeshPy::setStanardHypotheses(PyObject *args)
PyObject* FemMeshPy::setStandardHypotheses(PyObject *args)
{
if (!PyArg_ParseTuple(args, ""))
return 0;
try {
getFemMeshPtr()->setStanardHypotheses();
getFemMeshPtr()->setStandardHypotheses();
}
catch (const std::exception& e) {
PyErr_SetString(Base::BaseExceptionFreeCADError, e.what());