From ae53bd62c2f29027661811b9b7b4aa7c38e159a3 Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Mon, 28 Mar 2016 02:29:47 +0200 Subject: [PATCH] python3: Fixed bug in sendreq. --- python3/ashd/proto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python3/ashd/proto.py b/python3/ashd/proto.py index 7a078de..aa6b686 100644 --- a/python3/ashd/proto.py +++ b/python3/ashd/proto.py @@ -179,4 +179,4 @@ def sendreq(sock, req): data += key + b'\0' data += val + b'\0' data += b'\0' - htlib.sendfd(sock, req.sk.fileno(), data) + htlib.sendfd(sock, req.bsk.fileno(), data) -- 2.11.0