From 58779732826ce6a4f91fdb8a55f0c7a480d1544e Mon Sep 17 00:00:00 2001 From: Evan Broder Date: Wed, 12 Nov 2008 05:59:37 -0500 Subject: [PATCH 1/1] Fix another typo - this one in invirt.common svn path=/trunk/packages/invirt-base/; revision=1623 --- debian/changelog | 6 ++++++ python/invirt/common.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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 -- 1.7.9.5