diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2024-11-02 22:08:42 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2024-11-02 22:08:42 (GMT) |
commit | e47dce53e761beecac4acd90ebf6dd0006a7b534 (patch) | |
tree | 28c5c7a4d7f123531d49bc703878684c5e493dcb | |
parent | 1bef27ee10a820ceabdcfc6389e61b7fab934eea (diff) |
Use the new API to load core components.
-rw-r--r-- | plugins/pychrysalide/core.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/pychrysalide/core.c b/plugins/pychrysalide/core.c index a4de749..6842c34 100644 --- a/plugins/pychrysalide/core.c +++ b/plugins/pychrysalide/core.c @@ -625,13 +625,11 @@ PyMODINIT_FUNC PyInit_pychrysalide(void) #endif #endif - /* - if (!load_all_core_components(true)) + if (!load_core_components(ACC_GLOBAL_VARS)) { PyErr_SetString(PyExc_SystemError, "unable to load all basic components."); goto exit; } - */ /* Mise en place des fonctionnalités offertes */ |