Merge pull request #1529 from ableeker/python3

Fix for Python 3
This commit is contained in:
Apprentice Harper
2021-02-21 14:19:59 +00:00
committed by GitHub

View File

@@ -442,7 +442,7 @@ def nunpack(s, default=0):
elif l == 2: elif l == 2:
return struct.unpack('>H', s)[0] return struct.unpack('>H', s)[0]
elif l == 3: elif l == 3:
return struct.unpack('>L', '\x00'+s)[0] return struct.unpack('>L', b'\x00'+s)[0]
elif l == 4: elif l == 4:
return struct.unpack('>L', s)[0] return struct.unpack('>L', s)[0]
else: else: