summaryrefslogtreecommitdiffstats
path: root/Lib/gzip.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2005-03-28 01:08:02 (GMT)
committerTim Peters <tim.peters@gmail.com>2005-03-28 01:08:02 (GMT)
commiteba28bea9b8ef7df010e65c630b8c0f7009c6005 (patch)
tree9ec2d5adb6886c2577a8c20e4e51d6d7ed393ec4 /Lib/gzip.py
parent700f36c7520bffef73d86088fa80b7a1c62c416a (diff)
downloadcpython-eba28bea9b8ef7df010e65c630b8c0f7009c6005.zip
cpython-eba28bea9b8ef7df010e65c630b8c0f7009c6005.tar.gz
cpython-eba28bea9b8ef7df010e65c630b8c0f7009c6005.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/gzip.py')
-rw-r--r--Lib/gzip.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/gzip.py b/Lib/gzip.py
index 48bd522..4ecd211 100644
--- a/Lib/gzip.py
+++ b/Lib/gzip.py
@@ -333,8 +333,8 @@ class GzipFile:
def flush(self,zlib_mode=zlib.Z_SYNC_FLUSH):
if self.mode == WRITE:
- # Ensure the compressor's buffer is flushed
- self.fileobj.write(self.compress.flush(zlib_mode))
+ # Ensure the compressor's buffer is flushed
+ self.fileobj.write(self.compress.flush(zlib_mode))
self.fileobj.flush()
def fileno(self):