summaryrefslogtreecommitdiffstats
path: root/Lib/bz2.py
diff options
context:
space:
mode:
authorNadeem Vawda <nadeem.vawda@gmail.com>2011-05-24 22:32:08 (GMT)
committerNadeem Vawda <nadeem.vawda@gmail.com>2011-05-24 22:32:08 (GMT)
commitf1a1af21eb024d32261ffcd1b32ca287da543a5a (patch)
treeb6b58e8887c625871fc1c66e598a16caa96b59bc /Lib/bz2.py
parent62666e1db149ae777b8a472a67d339617c66a259 (diff)
downloadcpython-f1a1af21eb024d32261ffcd1b32ca287da543a5a.zip
cpython-f1a1af21eb024d32261ffcd1b32ca287da543a5a.tar.gz
cpython-f1a1af21eb024d32261ffcd1b32ca287da543a5a.tar.bz2
Fix typo in bz2 module.
Diffstat (limited to 'Lib/bz2.py')
-rw-r--r--Lib/bz2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/bz2.py b/Lib/bz2.py
index 9506b4a..8ffeaac 100644
--- a/Lib/bz2.py
+++ b/Lib/bz2.py
@@ -155,7 +155,7 @@ class BZ2File(io.BufferedIOBase):
if not self.seekable():
self._check_not_closed()
raise io.UnsupportedOperation("Seeking is only supported "
- "on files opening for reading")
+ "on files open for reading")
# Fill the readahead buffer if it is empty. Returns False on EOF.
def _fill_buffer(self):