From: Evan Broder Date: Wed, 12 Nov 2008 10:59:37 +0000 (-0500) Subject: Fix another typo - this one in invirt.common X-Git-Tag: 0.0.11^0 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-base.git/commitdiff_plain/refs/tags/0.0.11?hp=1345623118c2045fb66a972cd2a0ffbf1d65a277 Fix another typo - this one in invirt.common svn path=/trunk/packages/invirt-base/; revision=1623 --- diff --git a/debian/changelog b/debian/changelog index d55b761..ea099f5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +invirt-base (0.0.11) unstable; urgency=low + + * Fix a typo in the common Python exceptions + + -- Evan Broder Wed, 12 Nov 2008 05:59:05 -0500 + invirt-base (0.0.10) unstable; urgency=low * Fix a missing import in the remctl code diff --git a/python/invirt/common.py b/python/invirt/common.py index 69317fb..2cf860d 100644 --- a/python/invirt/common.py +++ b/python/invirt/common.py @@ -48,7 +48,7 @@ class InvalidInput(Exception): 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