##// END OF EJS Templates
readbundle: map 'HG10UN' to None compression...
Pierre-Yves David -
r26271:a0eff7eb default
parent child Browse files
Show More
@@ -80,11 +80,11 b' def combineresults(results):'
80 return result
80 return result
81
81
82 bundletypes = {
82 bundletypes = {
83 "": ("", 'UN'), # only when using unbundle on ssh and old http servers
83 "": ("", 'None'), # only when using unbundle on ssh and old http servers
84 # since the unification ssh accepts a header but there
84 # since the unification ssh accepts a header but there
85 # is no capability signaling it.
85 # is no capability signaling it.
86 "HG20": (), # special-cased below
86 "HG20": (), # special-cased below
87 "HG10UN": ("HG10UN", 'UN'),
87 "HG10UN": ("HG10UN", None),
88 "HG10BZ": ("HG10", 'BZ'),
88 "HG10BZ": ("HG10", 'BZ'),
89 "HG10GZ": ("HG10GZ", 'GZ'),
89 "HG10GZ": ("HG10GZ", 'GZ'),
90 }
90 }
General Comments 0
You need to be logged in to leave comments. Login now