8000 Fix easy bug. · jnothman/msgpack-python@d766820 · GitHub
[go: up one dir, main page]

Skip to content

Commit d766820

Browse files
committed
Fix easy bug.
1 parent cd3590e commit d766820

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

msgpack/fallback.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ def _read_header(self, execute=EX_CONSTRUCT, write_bytes=None):
341341
def _fb_unpack(self, execute=EX_CONSTRUCT, write_bytes=None):
342342
typ = TYPE_RESERVED
343343
while typ == TYPE_RESERVED:
344-
typ, n, obj = self._read_header(self, execute, write_bytes)
344+
typ, n, obj = self._read_header(execute, write_bytes)
345345

346346
if execute == EX_READ_ARRAY_HEADER:
347347
if typ != TYPE_ARRAY:

0 commit comments

Comments
 (0)
0