[openrtm-commit:02001] r717 - trunk/OpenRTM-aist-Python/OpenRTM_aist

openrtm @ openrtm.org openrtm @ openrtm.org
2016年 9月 27日 (火) 11:21:28 JST


Author: miyamoto
Date: 2016-09-27 11:21:28 +0900 (Tue, 27 Sep 2016)
New Revision: 717

Modified:
   trunk/OpenRTM-aist-Python/OpenRTM_aist/Manager.py
Log:
[compat,bugfix,->RELENG_1_2] bug fix.

Modified: trunk/OpenRTM-aist-Python/OpenRTM_aist/Manager.py
===================================================================
--- trunk/OpenRTM-aist-Python/OpenRTM_aist/Manager.py	2016-06-21 08:09:15 UTC (rev 716)
+++ trunk/OpenRTM-aist-Python/OpenRTM_aist/Manager.py	2016-09-27 02:21:28 UTC (rev 717)
@@ -2662,7 +2662,7 @@
   # @if jp
   # @brief 起動時にrtc.confで指定したポートを接続する
   # 例:
-  # manager.components.preconnect: RTC0.port0^RTC0.port1(interface_type=corba_cdr&dataport.dataflow_type=pull&~),~
+  # manager.components.preconnect: RTC0.port0^RTC0.port1(interface_type=corba_cdr&dataflow_type=pull&~),~
   # @param self
   # @else
   #
@@ -2763,7 +2763,7 @@
   # @if jp
   # @brief 起動時にrtc.confで指定したRTCをアクティベーションする
   # 例:
-  # manager.components.preactivate RTC1,RTC2~
+  # manager.components.preactivation: RTC1,RTC2~
   # @param self
   # @else
   #
@@ -2773,8 +2773,8 @@
   # void initPreActivation()
   def initPreActivation(self):
     
-    self._rtcout.RTC_TRACE("Components pre-activation: %s" % str(self._config.getProperty("manager.components.preactivate")))
-    comps = str(self._config.getProperty("manager.components.preactivate")).split(",")
+    self._rtcout.RTC_TRACE("Components pre-activation: %s" % str(self._config.getProperty("manager.components.preactivation")))
+    comps = str(self._config.getProperty("manager.components.preactivation")).split(",")
     for c in comps:
       tmp = [c]
       OpenRTM_aist.eraseHeadBlank(tmp)



More information about the openrtm-commit mailing list