diff options
-rwxr-xr-x | fusearchive.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fusearchive.py b/fusearchive.py index 43aaaf0..b95ec65 100755 --- a/fusearchive.py +++ b/fusearchive.py @@ -296,7 +296,7 @@ class FuseArchiveSerializer: fh.seek( 0 ) f = gzip.GzipFile( None, "wb", gzip_compress_level, fh ) #f = fh - cPickle.dump( obj, f ) + cPickle.dump( obj, f, -1 ) del f fh.flush() |