Skip to content
Snippets Groups Projects
Commit 9119b70f authored by Bruce Flynn's avatar Bruce Flynn
Browse files

fix eos mirror side parsing

parent 4b7059f3
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,7 @@ def _calmode(p):
def _mirrorside(p):
return bytes(p.secondary_header)[8] & 0x1 + 1
return (bytes(p.secondary_header)[8] & 0x1) + 1
def _scancount(p):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment