summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-04-24 10:26:46 -0700
committerJeff Forcier <jeff@bitprophet.org>2014-04-24 10:26:46 -0700
commit5837b7c21a10b4c0664412cae1f9604580ba5934 (patch)
treeb00a636603a2c486ebc4c54ac6bd4044e4231848
parentc7c1a24e3023a45cf6713e553c176e42a71a6d3d (diff)
downloadparamiko-5837b7c21a10b4c0664412cae1f9604580ba5934.tar.gz
Formatting
-rw-r--r--paramiko/file.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/paramiko/file.py b/paramiko/file.py
index 3ebcfa39..2238f0bf 100644
--- a/paramiko/file.py
+++ b/paramiko/file.py
@@ -287,7 +287,8 @@ class BufferedFile (object):
Set the file's current position, like stdio's ``fseek``. Not all file
objects support seeking.
- .. note:: If a file is opened in append mode (``'a'`` or ``'a+'``), any seek
+ .. note::
+ If a file is opened in append mode (``'a'`` or ``'a+'``), any seek
operations will be undone at the next write (as the file position
will move back to the end of the file).