summaryrefslogtreecommitdiffstats
path: root/ipalib
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2011-07-01 15:20:36 -0400
committerRob Crittenden <rcritten@redhat.com>2011-07-11 19:21:47 -0400
commit2415ba6d37371bc63131d02107fa4aee68e3f365 (patch)
tree5f35724fca0387484a6228cc7596ebd72504eb75 /ipalib
parentd9627ab1651f4ab00c3734cc5bd69b051f79f92b (diff)
downloadfreeipa-2415ba6d37371bc63131d02107fa4aee68e3f365.tar.gz
freeipa-2415ba6d37371bc63131d02107fa4aee68e3f365.tar.xz
freeipa-2415ba6d37371bc63131d02107fa4aee68e3f365.zip
Fix error in AttrValueNotFound exception example
Diffstat (limited to 'ipalib')
-rw-r--r--ipalib/errors.py4
1 files changed, 2 insertions, 2 deletions
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'
"""