Fix error in AttrValueNotFound exception example

This commit is contained in:
Rob Crittenden
2011-07-01 15:20:36 -04:00
parent d9627ab165
commit 2415ba6d37

View File

@@ -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'
"""