diff options
Diffstat (limited to 'python/qpid/assembler.py')
-rw-r--r-- | python/qpid/assembler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/qpid/assembler.py b/python/qpid/assembler.py index 1a480698c8..9f8bc4bd8a 100644 --- a/python/qpid/assembler.py +++ b/python/qpid/assembler.py @@ -46,9 +46,9 @@ class Segment: def decode_command(self, spec): sc = StringCodec(spec, self.payload) - cmd = sc.read_command() + hdr, cmd = sc.read_command() cmd.id = self.id - return cmd + return hdr, cmd def decode_header(self, spec): sc = StringCodec(spec, self.payload) |