Fix typo in bz2 module.

This commit is contained in:
Nadeem Vawda 2011-05-25 00:32:08 +02:00
parent 62666e1db1
commit f1a1af21eb
1 changed files with 1 additions and 1 deletions

View File

@ -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):