summaryrefslogtreecommitdiff
path: root/paramiko/file.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-02-21 12:16:11 -0800
committerJeff Forcier <jeff@bitprophet.org>2014-02-21 12:16:11 -0800
commitf836c98e5c5c859cb9d0189aed51dd5a884ee072 (patch)
treec9e2bf365c9f07d52b129dd32b1108c1c6b327af /paramiko/file.py
parentf09b562fa874d3358daa7dfd4ca7f2c8b5d47b68 (diff)
downloadparamiko-f836c98e5c5c859cb9d0189aed51dd5a884ee072.tar.gz
Don't actually need :class: anywhere now
Diffstat (limited to 'paramiko/file.py')
-rw-r--r--paramiko/file.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paramiko/file.py b/paramiko/file.py
index 4f9b56b6..65e58040 100644
--- a/paramiko/file.py
+++ b/paramiko/file.py
@@ -94,7 +94,7 @@ class BufferedFile (object):
def next(self):
"""
- Returns the next line from the input, or raises :class:`.StopIteration` when
+ Returns the next line from the input, or raises `.StopIteration` when
EOF is hit. Unlike python file objects, it's okay to mix calls to
`next` and `readline`.