summaryrefslogtreecommitdiff
path: root/paramiko/message.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2017-10-13 14:49:14 -0700
committerJeff Forcier <jeff@bitprophet.org>2017-10-13 15:39:10 -0700
commit6978c7a0b8faa683b119de3a0c096be31ac4fdc9 (patch)
treeaee637e95f3f969c7a83a755beab2ac3219ad405 /paramiko/message.py
parentc76406cc29935584e204e2d0a39ee51015bc7b92 (diff)
downloadparamiko-6978c7a0b8faa683b119de3a0c096be31ac4fdc9.tar.gz
Same issue as I ran into with invoke: somehow, Python 2.7 intersphinx no longer understands 'list' :(
Diffstat (limited to 'paramiko/message.py')
-rw-r--r--paramiko/message.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/paramiko/message.py b/paramiko/message.py
index f8ed6170..9af841da 100644
--- a/paramiko/message.py
+++ b/paramiko/message.py
@@ -187,7 +187,7 @@ class Message (object):
def get_list(self):
"""
- Fetch a `list` of `strings <str>` from the stream.
+ Fetch a list of `strings <str>` from the stream.
These are trivially encoded as comma-separated values in a string.
"""
@@ -281,7 +281,7 @@ class Message (object):
a single string of values separated by commas. (Yes, really, that's
how SSH2 does it.)
- :param list l: list of strings to add
+ :param l: list of strings to add
"""
self.add_string(','.join(l))
return self