diff mercurial/util.py @ 7473:5185a24ce04e

exceptions should inherit the Exception class
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Sat, 06 Dec 2008 15:53:57 +0100
parents 2a67430f92f1
children 90487273f59c
line wrap: on
line diff
--- a/mercurial/util.py	Sat Dec 06 15:40:04 2008 +0100
+++ b/mercurial/util.py	Sat Dec 06 15:53:57 2008 +0100
@@ -705,7 +705,7 @@
         if cwd is not None and oldcwd != cwd:
             os.chdir(oldcwd)
 
-class SignatureError:
+class SignatureError(Exception):
     pass
 
 def checksignature(func):