diff -r effff847870f -r eb3cc5e2eb89 mercurial/revlog.py --- a/mercurial/revlog.py Fri Sep 09 12:19:24 2005 -0700 +++ b/mercurial/revlog.py Tue Sep 13 14:16:15 2005 -0500 @@ -291,8 +291,8 @@ for n in self.nodemap: if hex(n).startswith(id): c.append(n) - if len(c) > 1: raise RevlogError("Ambiguous identifier") - if len(c) < 1: raise RevlogError("No match found") + if len(c) > 1: raise KeyError("Ambiguous identifier") + if len(c) < 1: raise KeyError("No match found") return c[0] return None