Fix another typo - this one in invirt.common 0.0.11
authorEvan Broder <broder@mit.edu>
Wed, 12 Nov 2008 10:59:37 +0000 (05:59 -0500)
committerEvan Broder <broder@mit.edu>
Wed, 12 Nov 2008 10:59:37 +0000 (05:59 -0500)
svn path=/trunk/packages/invirt-base/; revision=1623

debian/changelog
python/invirt/common.py

index d55b761..ea099f5 100644 (file)
@@ -1,3 +1,9 @@
+invirt-base (0.0.11) unstable; urgency=low
+
+  * Fix a typo in the common Python exceptions
+
+ -- Evan Broder <broder@mit.edu>  Wed, 12 Nov 2008 05:59:05 -0500
+
 invirt-base (0.0.10) unstable; urgency=low
 
   * Fix a missing import in the remctl code
 invirt-base (0.0.10) unstable; urgency=low
 
   * Fix a missing import in the remctl code
index 69317fb..2cf860d 100644 (file)
@@ -48,7 +48,7 @@ class InvalidInput(Exception):
     the select box).
     """
     def __init__(self, err_field, err_value, expl=None):
     the select box).
     """
     def __init__(self, err_field, err_value, expl=None):
-        MyException.__init__(self, expl)
+        Exception.__init__(self, expl)
         self.err_field = err_field
         self.err_value = err_value
 
         self.err_field = err_field
         self.err_value = err_value