python3: Fixed bug in sendreq.
[ashd.git] / python3 / ashd / proto.py
index e695751..aa6b686 100644 (file)
@@ -138,8 +138,8 @@ def recvreq(sock = 0):
     done, to avoid leaking response sockets. If end-of-file is
     received on the socket, None is returned.
 
-    This function may either raise on OSError if an error occurs on
-    the socket, or a ashd.proto.protoerr if the incoming request is
+    This function may either raise an OSError if an error occurs on
+    the socket, or an ashd.proto.protoerr if the incoming request is
     invalidly encoded.
     """
     data, fd = htlib.recvfd(sock)
@@ -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)