From 2415ba6d37371bc63131d02107fa4aee68e3f365 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Fri, 1 Jul 2011 15:20:36 -0400 Subject: Fix error in AttrValueNotFound exception example --- ipalib/errors.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipalib') diff --git a/ipalib/errors.py b/ipalib/errors.py index 04211e6ed..092d55852 100644 --- a/ipalib/errors.py +++ b/ipalib/errors.py @@ -1198,10 +1198,10 @@ class AttrValueNotFound(ExecutionError): For example: - >>> raise NotFound(attr='ipasudoopt', value='authenticate') + >>> raise AttrValueNotFound(attr='ipasudoopt', value='authenticate') Traceback (most recent call last): ... - AttrValueNotFound: ipasudoopt does not contain 'authenticate'. + AttrValueNotFound: ipasudoopt does not contain 'authenticate' """ -- cgit