summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/core/module.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-12-28 17:25:45 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-12-28 17:25:45 (GMT)
commitdf8dba24f7b01a507acd03659c8d4d4868dea143 (patch)
tree8fc19fad6ae15a6e7a8827dd997c53d84dea9b23 /plugins/pychrysalide/core/module.c
parent865f6d87f3bce7f569343382c3dfd1bc68dcacee (diff)
Refactored the core module of the Python API.
Diffstat (limited to 'plugins/pychrysalide/core/module.c')
-rw-r--r--plugins/pychrysalide/core/module.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/pychrysalide/core/module.c b/plugins/pychrysalide/core/module.c
index c786ad6..3d117a5 100644
--- a/plugins/pychrysalide/core/module.c
+++ b/plugins/pychrysalide/core/module.c
@@ -92,10 +92,10 @@ bool populate_core_module(void)
result = true;
- if (result) result = ensure_python_demanglers_is_registered();
+ if (result) result = populate_core_module_with_demanglers();
if (result) result = populate_core_module_with_global();
if (result) result = populate_core_module_with_logs();
- if (result) result = ensure_python_params_is_registered();
+ if (result) result = populate_core_module_with_params();
if (result) result = populate_core_module_with_queue();
assert(result);