Skip to content

Commit

Permalink
Fixed updateCommand definition for python
Browse files Browse the repository at this point in the history
  • Loading branch information
mlampert authored and wwmayer committed Sep 27, 2019
1 parent b4846d4 commit 7c9e044
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Gui/ApplicationPy.cpp
Expand Up @@ -144,8 +144,8 @@ PyMethodDef Application::Methods[] = {
{"listCommands", (PyCFunction) Application::sListCommands, METH_VARARGS,
"listCommands() -> list of strings\n\n"
"Returns a list of all commands known to FreeCAD."},
{"updateCommands()", (PyCFunction) Application::sUpdateCommands, METH_VARARGS,
"updateCommands()\n\n"
{"updateCommands", (PyCFunction) Application::sUpdateCommands, METH_VARARGS,
"updateCommands\n\n"
"Update all command active status"},
{"SendMsgToActiveView", (PyCFunction) Application::sSendActiveView, METH_VARARGS,
"deprecated -- use class View"},
Expand Down

0 comments on commit 7c9e044

Please sign in to comment.