fix missed append operator

This commit is contained in:
ghost 2023-12-26 09:57:45 +02:00
parent db5738dbe4
commit e5c6627586

View File

@ -162,7 +162,7 @@ class PyMaster:
self.sock.sendto(data, i.addr)
if key:
packet = b"\x7f" + key.encode('latin_1')
packet += b"\x7f" + key.encode('latin_1')
# Use pregenerated address string
packet += i.queryAddr