Mercurial > hg-stable
changeset 26271:a0eff7ebc2ae
readbundle: map 'HG10UN' to None compression
In line with the other previous changes
author | Pierre-Yves David <pierre-yves.david@fb.com> |
---|---|
date | Fri, 11 Sep 2015 17:06:56 -0700 |
parents | a5f5a815a006 |
children | 59c410db8c68 |
files | mercurial/changegroup.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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'), }