Mercurial > public > mercurial-scm > hg-stable
diff mercurial/hgweb/hgweb_mod.py @ 3936:ea238a4e9e8b
Teach hgweb about revlog.LookupError
author | Brendan Cully <brendan@kublai.com> |
---|---|
date | Tue, 19 Dec 2006 16:40:09 -0800 |
parents | 57b797601b61 |
children | b485a4459d96 |
line wrap: on
line diff
--- a/mercurial/hgweb/hgweb_mod.py Tue Dec 19 08:59:41 2006 -0600 +++ b/mercurial/hgweb/hgweb_mod.py Tue Dec 19 16:40:09 2006 -0800 @@ -869,7 +869,7 @@ try: req.write(self.filerevision(self.filectx(req))) return - except hg.RepoError: + except revlog.LookupError: pass req.write(self.manifest(self.changectx(req), path))