mercurial/hgweb.py
changeset 1779 a1e6e02e9d05
parent 1777 a2316878f19d
parent 1736 50de0887bbcd
child 1780 8a1f2eae2832
--- a/mercurial/hgweb.py
+++ b/mercurial/hgweb.py
@@ -965,7 +965,7 @@ class hgweb(object):
                 nodes = map(bin, req.form['roots'][0].split(" "))
 
             z = zlib.compressobj()
-            f = self.repo.changegroup(nodes)
+            f = self.repo.changegroup(nodes, 'serve')
             while 1:
                 chunk = f.read(4096)
                 if not chunk: