[openrtm-commit:02847] r874 - branches/FSM4RTC/OpenRTM-aist-Python/OpenRTM_aist

openrtm @ openrtm.org openrtm @ openrtm.org
2017年 9月 29日 (金) 14:59:45 JST


Author: miyamoto
Date: 2017-09-29 14:59:45 +0900 (Fri, 29 Sep 2017)
New Revision: 874

Modified:
   branches/FSM4RTC/OpenRTM-aist-Python/OpenRTM_aist/Async.py
Log:
[merge,2.0,FSM4RTC] r873

Modified: branches/FSM4RTC/OpenRTM-aist-Python/OpenRTM_aist/Async.py
===================================================================
--- branches/FSM4RTC/OpenRTM-aist-Python/OpenRTM_aist/Async.py	2017-09-29 05:58:06 UTC (rev 873)
+++ branches/FSM4RTC/OpenRTM-aist-Python/OpenRTM_aist/Async.py	2017-09-29 05:59:45 UTC (rev 874)
@@ -43,7 +43,7 @@
 
   def svc(self):
     if len(self._args) > 0:
-      self._func(self._obj, self._args)
+      self._func(self._obj, *self._args)
     else:
       self._func(self._obj)
 
@@ -72,7 +72,7 @@
 
   def svc(self):
     if len(self._args) > 0:
-      self._func(self._obj, self._args)
+      self._func(self._obj, *self._args)
     else:
       self._func(self._obj)
 



More information about the openrtm-commit mailing list