diff -r 3505fcd5a231 -r 233c733e4af5 mercurial/hgweb/hgweb_mod.py --- a/mercurial/hgweb/hgweb_mod.py Sat Sep 09 18:25:06 2006 -0700 +++ b/mercurial/hgweb/hgweb_mod.py Wed Oct 18 02:08:36 2006 -0500 @@ -884,7 +884,13 @@ req.write(self.filelog(self.filectx(req))) def do_lookup(self, req): - resp = hex(self.repo.lookup(req.form['key'][0])) + "\n" + try: + r = hex(self.repo.lookup(req.form['key'][0])) + success = 1 + except Exception,inst: + r = str(inst) + success = 0 + resp = "%s %s\n" % (success, r) req.httphdr("application/mercurial-0.1", length=len(resp)) req.write(resp)