author | Alexis S. L. Carvalho <alexis@cecm.usp.br> |
Sat, 02 Dec 2006 16:08:00 -0200 | |
changeset 3762 | b9d3e12da485 |
parent 3761 | 9433bdcaa9ae |
child 3763 | 955475d237fc |
child 3764 | 6652209d104d |
--- a/mercurial/changegroup.py Sat Dec 02 03:38:55 2006 -0200 +++ b/mercurial/changegroup.py Sat Dec 02 16:08:00 2006 -0200 @@ -50,8 +50,8 @@ bundletypes = { "": ("", nocompress), "HG10UN": ("HG10UN", nocompress), - "HG10BZ": ("HG10", bz2.BZ2Compressor), - "HG10GZ": ("HG10GZ", zlib.compressobj), + "HG10BZ": ("HG10", lambda: bz2.BZ2Compressor()), + "HG10GZ": ("HG10GZ", lambda: zlib.compressobj()), } def writebundle(cg, filename, bundletype):