Mercurial > hg
changeset 3705:e9d339d5d2d7
BZ2Compressor already defaults to compresslevel=9.
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Wed, 22 Nov 2006 22:32:23 +0100 |
parents | 9c1737a3e254 |
children | 0d810798acb1 |
files | mercurial/changegroup.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/changegroup.py Wed Nov 22 22:08:00 2006 +0100 +++ b/mercurial/changegroup.py Wed Nov 22 22:32:23 2006 +0100 @@ -50,7 +50,7 @@ bundletypes = { "": ("", nocompress), "HG10UN": ("HG10UN", nocompress), - "HG10BZ": ("HG10", lambda: bz2.BZ2Compressor(9)), + "HG10BZ": ("HG10", bz2.BZ2Compressor), "HG10GZ": ("HG10GZ", zlib.compressobj), }