[openrtm-commit:01847] r692 - trunk/OpenRTM-aist-Python/OpenRTM_aist
openrtm @ openrtm.org
openrtm @ openrtm.org
2016年 3月 12日 (土) 02:12:38 JST
Author: miyamoto
Date: 2016-03-12 02:12:38 +0900 (Sat, 12 Mar 2016)
New Revision: 692
Modified:
trunk/OpenRTM-aist-Python/OpenRTM_aist/ManagerServant.py
Log:
[compat,bugfix,->RELENG_1_2] bug fix. refs #3411
Modified: trunk/OpenRTM-aist-Python/OpenRTM_aist/ManagerServant.py
===================================================================
--- trunk/OpenRTM-aist-Python/OpenRTM_aist/ManagerServant.py 2016-03-11 16:52:25 UTC (rev 691)
+++ trunk/OpenRTM-aist-Python/OpenRTM_aist/ManagerServant.py 2016-03-11 17:12:38 UTC (rev 692)
@@ -926,8 +926,9 @@
rtcs = self._mgr.getComponents()
crtcs = []
tmp = [name]
- name = OpenRTM_aist.eraseHeadBlank(tmp)
- rtc_name = tmp[0].split("/")
+ OpenRTM_aist.eraseHeadBlank(tmp)
+ name = tmp[0]
+ rtc_name = name.split("/")
for rtc in rtcs:
if len(rtc_name) == 1:
if rtc.getInstanceName() == rtc_name[0]:
More information about the openrtm-commit
mailing list