We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6e12b0 commit 3fedcacCopy full SHA for 3fedcac
smach_viewer/scripts/smach_viewer.py
@@ -484,6 +484,9 @@ def selection_changed(self, event):
484
485
# Generate the userdata string
486
ud_str = ''
487
+ if not isinstance(container._local_data._data, dict):
488
+ rospy.logwarn("userdata is not dictionary({}), please fix sender proram".format(container._local_data._data))
489
+ container._local_data._data = {}
490
for (k,v) in container._local_data._data.items():
491
ud_str += str(k)+": "
492
vstr = str(v)
0 commit comments