diff options
Diffstat (limited to 'ipalib/errors2.py')
-rw-r--r-- | ipalib/errors2.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ipalib/errors2.py b/ipalib/errors2.py index 83ea2aab4..d1ece25d5 100644 --- a/ipalib/errors2.py +++ b/ipalib/errors2.py @@ -605,15 +605,15 @@ class NotFound(ExecutionError): For example: - >>> raise NotFound(msg='Entry not found') + >>> raise NotFound() Traceback (most recent call last): ... - NotFound: Entry not found + NotFound: entry not found """ errno = 4001 - format = _('%(msg)s') + format = _('entry not found') class DuplicateEntry(ExecutionError): """ |