coredevice: Fix host-side serialization of (nested) lists

Test case to follow.
This commit is contained in:
David Nadlinger 2019-03-30 17:13:27 +00:00
parent f9af058b96
commit fc95183e04
1 changed files with 1 additions and 1 deletions

View File

@ -307,7 +307,7 @@ class CommKernel:
args.append(value)
def _skip_rpc_value(self, tags):
tag = tags.pop(0)
tag = chr(tags.pop(0))
if tag == "t":
length = tags.pop(0)
for _ in range(length):