From f1a1af21eb024d32261ffcd1b32ca287da543a5a Mon Sep 17 00:00:00 2001 From: Nadeem Vawda Date: Wed, 25 May 2011 00:32:08 +0200 Subject: Fix typo in bz2 module. --- Lib/bz2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- cgit v0.12