From f4870a4abc4e56d9f1a03c89a490654b38a7109c Mon Sep 17 00:00:00 2001 From: Nobuhiko Miyamoto Date: Wed, 18 Jun 2025 10:08:59 +0900 Subject: [PATCH] [compat] fixed bug. --- OpenRTM_aist/Manager.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/OpenRTM_aist/Manager.py b/OpenRTM_aist/Manager.py index 3e6fc3f1..b0135b50 100644 --- a/OpenRTM_aist/Manager.py +++ b/OpenRTM_aist/Manager.py @@ -577,7 +577,8 @@ def load_prop(self, prop, initfunc): self._rtcout.RTC_TRACE("Manager.load(module_file_name = %s, module_file_path = %s, language = %s, initfunc = %s)", (prop.getProperty("module_file_name"), prop.getProperty("module_file_path"), - prop.getProperty("language"))) + prop.getProperty("language"), + initfunc)) fname = prop.getProperty("module_file_name") fname = fname.replace("/", os.sep) fname = fname.replace("\\", os.sep)