diff -r 01b856927970 -r d0db3462d568 mercurial/hgweb/hgweb_mod.py --- a/mercurial/hgweb/hgweb_mod.py Tue Jun 27 00:09:31 2006 -0700 +++ b/mercurial/hgweb/hgweb_mod.py Tue Jun 27 00:09:33 2006 -0700 @@ -12,7 +12,6 @@ from mercurial.demandload import demandload demandload(globals(), "re zlib ConfigParser cStringIO sys tempfile") demandload(globals(), "mercurial:mdiff,ui,hg,util,archival,templater") -demandload(globals(), "mercurial.hgweb.request:hgrequest") demandload(globals(), "mercurial.hgweb.common:get_mtime,staticfile") from mercurial.node import * from mercurial.i18n import gettext as _ @@ -652,7 +651,7 @@ raise Exception("suspicious path") return p - def run(self, req=hgrequest()): + def run(self, req): def header(**map): yield self.t("header", **map) @@ -725,7 +724,6 @@ method(req) else: req.write(self.t("error")) - req.done() def do_changelog(self, req): hi = self.repo.changelog.count() - 1