Fix alignment issue when using spaces with the separator.
For example: ./protocol "pos_x:32, pos_y:32, pos_z:32" 0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | pos_x | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | pos_y | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | pos_z | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
This commit is contained in:
parent
4e8326ea6c
commit
e87fe4cb74
2
protocol
2
protocol
@ -131,7 +131,7 @@ class Protocol():
|
|||||||
raise
|
raise
|
||||||
except:
|
except:
|
||||||
raise ProtocolException("FATAL: Invalid field_list specification (%s)" %spec)
|
raise ProtocolException("FATAL: Invalid field_list specification (%s)" %spec)
|
||||||
self.field_list.append({"text":text, "len":bits})
|
self.field_list.append({"text":text.strip(), "len":bits})
|
||||||
|
|
||||||
# Parse options
|
# Parse options
|
||||||
if opts is not None:
|
if opts is not None:
|
||||||
|
Loading…
Reference in New Issue
Block a user