Mercurial > hg-stable
changeset 2537:b6975008d44f
Fix hgwebdir to run hgweb using run_wsgi.
author | Eric Hopper <hopper@omnifarious.org> |
---|---|
date | Fri, 30 Jun 2006 08:47:41 -0700 |
parents | 8106e477f584 |
children | f4b7d71c1c60 |
files | mercurial/hgweb/hgwebdir_mod.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/hgweb/hgwebdir_mod.py Fri Jun 30 08:45:52 2006 -0700 +++ b/mercurial/hgweb/hgwebdir_mod.py Fri Jun 30 08:47:41 2006 -0700 @@ -134,7 +134,7 @@ real = dict(self.repos).get(virtual) if real: try: - hgweb(real).run(req) + hgweb(real).run_wsgi(req) except IOError, inst: req.write(tmpl("error", error=inst.strerror)) except hg.RepoError, inst: