diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2009-01-28 23:21:17 -0700 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2009-02-03 15:29:05 -0500 |
commit | 0211c76cd0ce614b9c7510315dbadf5336667410 (patch) | |
tree | 0dca19c3305db51bbd9eb6503e0ef2f3f4488ffb /ipalib/errors2.py | |
parent | 5717c9d6689f15c46801f2d251e174fad4ce4748 (diff) | |
download | freeipa-0211c76cd0ce614b9c7510315dbadf5336667410.tar.gz freeipa-0211c76cd0ce614b9c7510315dbadf5336667410.tar.xz freeipa-0211c76cd0ce614b9c7510315dbadf5336667410.zip |
Fixed some of the test_xmlrpc unit tests
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): """ |