Add Python3 support to thread-cert. (#985)

This commit is contained in:
PFierek
2016-11-17 21:16:59 +08:00
committed by Jonathan Hui
parent 78047488b6
commit fba3198c9e
17 changed files with 118 additions and 92 deletions
+1 -1
View File
@@ -153,7 +153,7 @@ class MacFrame:
# Check end of MAC frame
if frame_type == MacHeader.FrameType.COMMAND:
command_type = data.read(1)
command_type = ord(data.read(1))
else:
command_type = None