[python] ivy_msg_interface: fix for multiple char arrays in msg

This commit is contained in:
Felix Ruess
2015-11-04 16:43:46 +01:00
parent 449a9e3992
commit 776fb863d7
+1 -1
View File
@@ -55,7 +55,7 @@ class IvyMessagesInterface(object):
return
# first split on array delimiters
l = re.split('([|\"][^|]*[|\"])', larg[0])
l = re.split('([|\"][^|\"]*[|\"])', larg[0])
# strip spaces and filter out emtpy strings
l = [str.strip(s) for s in l if str.strip(s) is not '']
data = []