# HG changeset patch # User mpm@selenic.com # Date 1121247709 28800 # Node ID b50cd98bb7e4cde13b0b23e92d37dfd8e9e83eab # Parent 44b30755d07c4ece936e2ffe6fa9b51b518f3c3e Repair the hgweb search interface manifest hash: f5c644f14b31da897dc66f96c2852ae1f11f43f1 diff -r 44b30755d07c -r b50cd98bb7e4 mercurial/hgweb.py --- a/mercurial/hgweb.py Tue Jul 12 20:55:42 2005 -0800 +++ b/mercurial/hgweb.py Wed Jul 13 01:41:49 2005 -0800 @@ -629,7 +629,7 @@ hi = args['rev'][0] try: hi = self.repo.changelog.rev(self.repo.lookup(hi)) - except KeyError: + except RepoError: write(self.search(hi)) return