changeset 2622 | 064aef9162cc |
parent 2621 | 5a5852a417b1 |
child 2666 | ebf033bc8eb2 |
child 2683 | 8a798185809d |
--- a/mercurial/hgweb/hgweb_mod.py Sat Jul 15 16:06:35 2006 -0700 +++ b/mercurial/hgweb/hgweb_mod.py Sun Jul 16 10:04:16 2006 -0700 @@ -861,7 +861,7 @@ def do_capabilities(self, req): caps = ['unbundle'] - if self.repo.ui.configbool('server', 'stream'): + if self.repo.ui.configbool('server', 'uncompressed'): caps.append('stream=%d' % self.repo.revlogversion) resp = ' '.join(caps) req.httphdr("application/mercurial-0.1", length=len(resp))