common python 3 string/bytes error
Status: Alpha
Brought to you by:
negativeiq
on line 215 there is:
req = req + chr(0x03).encode() + chr(len(destaddr)).encode() + destaddr
for obvious reason, it should be replaced by:
req = req + chr(0x03).encode() + chr(len(destaddr)).encode() + destaddr.encode()