Fix wrong method call

This commit is contained in:
Christophe Bedard 2019-11-17 10:18:34 -08:00
parent 588e6c1afa
commit 02f90abc78

View file

@ -341,7 +341,7 @@ class RosDataModelUtil(DataModelUtil):
info = self.get_subscription_handle_info(handle) info = self.get_subscription_handle_info(handle)
elif handle in self.data.services.index: elif handle in self.data.services.index:
type_name = 'Service' type_name = 'Service'
info = self.get_subscription_handle_info(handle) info = self.get_service_handle_info(handle)
elif handle in self.data.clients.index: elif handle in self.data.clients.index:
type_name = 'Client' type_name = 'Client'
info = self.get_client_handle_info(handle) info = self.get_client_handle_info(handle)