From 0211c76cd0ce614b9c7510315dbadf5336667410 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Wed, 28 Jan 2009 23:21:17 -0700 Subject: Fixed some of the test_xmlrpc unit tests --- ipalib/errors2.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ipalib/errors2.py') diff --git a/ipalib/errors2.py b/ipalib/errors2.py index 83ea2aab..d1ece25d 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): """ -- cgit