##// END OF EJS Templates
Teach hgweb about revlog.LookupError
Brendan Cully -
r3936:ea238a4e default
parent child Browse files
Show More
@@ -869,7 +869,7 b' class hgweb(object):'
869 try:
869 try:
870 req.write(self.filerevision(self.filectx(req)))
870 req.write(self.filerevision(self.filectx(req)))
871 return
871 return
872 except hg.RepoError:
872 except revlog.LookupError:
873 pass
873 pass
874
874
875 req.write(self.manifest(self.changectx(req), path))
875 req.write(self.manifest(self.changectx(req), path))
General Comments 0
You need to be logged in to leave comments. Login now