summaryrefslogtreecommitdiff
path: root/paramiko/transport.py
diff options
context:
space:
mode:
Diffstat (limited to 'paramiko/transport.py')
-rw-r--r--paramiko/transport.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paramiko/transport.py b/paramiko/transport.py
index 99a7bbc9..8c124403 100644
--- a/paramiko/transport.py
+++ b/paramiko/transport.py
@@ -343,7 +343,7 @@ class Transport(threading.Thread, ClosingContextManager):
If the object is not actually a socket, it must have the following
methods:
- - ``send(str)``: Writes from 1 to ``len(str)`` bytes, and returns an
+ - ``send(bytes)``: Writes from 1 to ``len(bytes)`` bytes, and returns an
int representing the number of bytes written. Returns
0 or raises ``EOFError`` if the stream has been closed.
- ``recv(int)``: Reads from 1 to ``int`` bytes and returns them as a