fix mic-e dstcall decoding bug

This commit is contained in:
Rossen Georgiev 2015-03-10 17:29:35 +00:00
parent 6ec5e1e8e5
commit 829f1fc894
1 changed files with 1 additions and 1 deletions

View File

@ -477,7 +477,7 @@ def _parse_mice(dstcall, body):
elif ord(i) > 76: # P-Y
tmpdstcall += chr(ord(i) - 32)
elif ord(i) > 57: # A-J
tmpdstcall += chr(ord(i) - 16)
tmpdstcall += chr(ord(i) - 17)
else: # 0-9
tmpdstcall += i