mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-05 10:13:09 +00:00
fix incorrect send_data call. there is no client variable, and send_data
is a class method. Pyflakes complained about it.
This commit is contained in:
@@ -250,7 +250,7 @@ class ThreadedTCPRequestHandler(SocketServer.BaseRequestHandler):
|
||||
vv("bad decrypt, skipping...")
|
||||
data2 = json.dumps(dict(rc=1))
|
||||
data2 = self.server.key.Encrypt(data2)
|
||||
send_data(client, data2)
|
||||
self.send_data(data2)
|
||||
return
|
||||
|
||||
vvvv("loading json from the data")
|
||||
|
||||
Reference in New Issue
Block a user