mirror of
https://github.com/de2tla2f/pymaster.git
synced 2024-11-25 12:21:28 +00:00
Fix TypeError in sendto call
This commit is contained in:
parent
fff6fc9332
commit
d99acdb25b
|
@ -111,8 +111,10 @@ class PyMaster:
|
|||
continue
|
||||
|
||||
if( nat ):
|
||||
reply = '\xff\xff\xff\xffc {0}:{1}'.format( addr[0], addr[1] )
|
||||
data = reply.encode( 'latin_1' )
|
||||
# Tell server to send info reply
|
||||
self.sock.sendto( '\xff\xff\xff\xffc {0}:{1}'.format( addr[0], addr[1] ), i.addr )
|
||||
self.sock.sendto( data, i.addr )
|
||||
|
||||
# Use pregenerated address string
|
||||
packet += i.queryAddr
|
||||
|
|
Loading…
Reference in a new issue