Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Mesh: [skip ci] fix bug in Mesh.export when passing a custom toleranc…
…e value
  • Loading branch information
wwmayer committed Aug 26, 2020
1 parent 30bc9fc commit f09d48d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Mod/Mesh/App/AppMeshPy.cpp
Expand Up @@ -361,9 +361,9 @@ class Module : public Py::ExtensionModule<Module>

if (!PyArg_ParseTupleAndKeywords( args.ptr(), keywds.ptr(),
#if PY_MAJOR_VERSION >= 3
"Oet|fp",
"Oet|dp",
#else
"Oet|fi",
"Oet|di",
#endif // Python version switch
kwList, &objects, "utf-8", &fileNamePy,
&fTolerance, &exportAmfCompressed )) {
Expand Down

0 comments on commit f09d48d

Please sign in to comment.