# HG changeset patch # User Pierre-Yves David # Date 1442016416 25200 # Node ID a0eff7ebc2aebb32cf4c8da276104102ff37d786 # Parent a5f5a815a006f81d0a7d88842b1de7c5e7dc92a5 readbundle: map 'HG10UN' to None compression In line with the other previous changes diff -r a5f5a815a006 -r a0eff7ebc2ae mercurial/changegroup.py --- a/mercurial/changegroup.py Fri Sep 11 17:06:02 2015 -0700 +++ b/mercurial/changegroup.py Fri Sep 11 17:06:56 2015 -0700 @@ -80,11 +80,11 @@ return result bundletypes = { - "": ("", 'UN'), # only when using unbundle on ssh and old http servers + "": ("", 'None'), # only when using unbundle on ssh and old http servers # since the unification ssh accepts a header but there # is no capability signaling it. "HG20": (), # special-cased below - "HG10UN": ("HG10UN", 'UN'), + "HG10UN": ("HG10UN", None), "HG10BZ": ("HG10", 'BZ'), "HG10GZ": ("HG10GZ", 'GZ'), }