From 24ce3863873d976ba28299ad7bd880f612e049af Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Sun, 3 Apr 2011 17:08:49 +0200 Subject: [PATCH] Fix whitespace --- Lib/bz2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/bz2.py b/Lib/bz2.py index 667fffdeed..9506b4ad3b 100644 --- a/Lib/bz2.py +++ b/Lib/bz2.py @@ -105,7 +105,7 @@ class BZ2File(io.BufferedIOBase): self._fp.write(self._compressor.flush()) self._compressor = None finally: - try: + try: if self._closefp: self._fp.close() finally: @@ -251,7 +251,7 @@ class BZ2File(io.BufferedIOBase): def readinto(self, b): """Read up to len(b) bytes into b. - + Returns the number of bytes read (0 for EOF). """ with self._lock: -- 2.50.1