Fixed some of the test_xmlrpc unit tests

This commit is contained in:
Jason Gerard DeRose
2009-01-28 23:21:17 -07:00
committed by Rob Crittenden
parent 5717c9d668
commit 0211c76cd0
9 changed files with 61 additions and 61 deletions

View File

@@ -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):
"""