summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/debug
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/pychrysalide/debug')
-rw-r--r--plugins/pychrysalide/debug/debugger.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/pychrysalide/debug/debugger.c b/plugins/pychrysalide/debug/debugger.c
index 20b94c7..5d8181f 100644
--- a/plugins/pychrysalide/debug/debugger.c
+++ b/plugins/pychrysalide/debug/debugger.c
@@ -1052,7 +1052,7 @@ PyTypeObject *get_python_binary_debugger_type(void)
{
"get_reg_names", py_binary_debugger_get_register_names,
METH_VARARGS,
- "get_reg_names($self, [grp]/)\n--\n\nGet the names of all registers belonging to an optional group."
+ "get_reg_names($self, grp, /)\n--\n\nGet the names of all registers belonging to an optional group."
},
{
"get_reg_size", py_binary_debugger_get_register_size,
@@ -1140,7 +1140,7 @@ PyTypeObject *get_python_binary_debugger_type(void)
PyVarObject_HEAD_INIT(NULL, 0)
- .tp_name = "pychrysalide.analysis.BinaryDebugger",
+ .tp_name = "pychrysalide.debug.BinaryDebugger",
.tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,