Whitespace normalization.

This commit is contained in:
Tim Peters 2005-03-28 01:08:02 +00:00
parent 700f36c752
commit eba28bea9b
14 changed files with 28 additions and 30 deletions

View file

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