[openrtm-commit:02846] r873 - trunk/OpenRTM-aist-Python/OpenRTM_aist

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


Author: miyamoto
Date: 2017-09-29 14:58:06 +0900 (Fri, 29 Sep 2017)
New Revision: 873

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

Modified: trunk/OpenRTM-aist-Python/OpenRTM_aist/Async.py
===================================================================
--- trunk/OpenRTM-aist-Python/OpenRTM_aist/Async.py	2017-09-28 09:04:16 UTC (rev 872)
+++ trunk/OpenRTM-aist-Python/OpenRTM_aist/Async.py	2017-09-29 05:58:06 UTC (rev 873)
@@ -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