mercurial/changegroup.py
changeset 14060 aaa9a5989405
parent 13831 d69c9510d648
child 14141 bd1cbfe5db5c
--- a/mercurial/changegroup.py	Sat Apr 30 15:30:51 2011 +0200
+++ b/mercurial/changegroup.py	Sat Apr 30 14:22:03 2011 +0200
@@ -43,7 +43,9 @@
         return ""
 
 bundletypes = {
-    "": ("", nocompress),
+    "": ("", nocompress), # only when using unbundle on ssh and old http servers
+                          # since the unification ssh accepts a header but there
+                          # is no capability signaling it.
     "HG10UN": ("HG10UN", nocompress),
     "HG10BZ": ("HG10", lambda: bz2.BZ2Compressor()),
     "HG10GZ": ("HG10GZ", lambda: zlib.compressobj()),