Revert some exception type changes in revlog
authormpm@selenic.com
Tue, 13 Sep 2005 14:16:15 -0500
changeset 1232 eb3cc5e2eb89
parent 1231 effff847870f
child 1233 5381b0d88e9e
Revert some exception type changes in revlog
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