summaryrefslogtreecommitdiffstats
path: root/ipalib/errors.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2009-05-12 18:47:19 -0600
committerRob Crittenden <rcritten@redhat.com>2009-05-13 14:22:09 -0400
commit87480b7bdea7cfe99d0c3d964fd65b82dbaf6a6c (patch)
treebe9dc3e61549a2472f422e271f9472b3b649de23 /ipalib/errors.py
parent252e9b61eba65743b834f799f4f2321f66b12676 (diff)
downloadfreeipa-87480b7bdea7cfe99d0c3d964fd65b82dbaf6a6c.tar.gz
freeipa-87480b7bdea7cfe99d0c3d964fd65b82dbaf6a6c.tar.xz
freeipa-87480b7bdea7cfe99d0c3d964fd65b82dbaf6a6c.zip
Re-enable doctest, fix broken docstrings
Diffstat (limited to 'ipalib/errors.py')
-rw-r--r--ipalib/errors.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/ipalib/errors.py b/ipalib/errors.py
index a29dbbee..dcbeadb6 100644
--- a/ipalib/errors.py
+++ b/ipalib/errors.py
@@ -708,7 +708,7 @@ class NoSuchNamespaceError(InvocationError):
>>> raise NoSuchNamespaceError(name='Plugins')
Traceback (most recent call last):
...
- NoSuchNamespaceError: api has no such namespace: Plugins
+ NoSuchNamespaceError: api has no such namespace: 'Plugins'
"""
errno = 3010
@@ -779,7 +779,7 @@ class MalformedServicePrincipal(ExecutionError):
For example:
- >>> raise MalformedServicePrincipal(reason="missing service")
+ >>> raise MalformedServicePrincipal(reason='missing service')
Traceback (most recent call last):
...
MalformedServicePrincipal: Service principal is not of the form: service/fully-qualified host name: missing service
@@ -787,7 +787,7 @@ class MalformedServicePrincipal(ExecutionError):
"""
errno = 4004
- format = _('Service principal is not of the form: service/fully-qualified host name: %(reason)r')
+ format = _('Service principal is not of the form: service/fully-qualified host name: %(reason)s')
class RealmMismatch(ExecutionError):
"""
@@ -843,10 +843,10 @@ class MalformedUserPrincipal(ExecutionError):
For example:
- >>> raise MalformedUserPrincipal(principal=jsmith@@EXAMPLE.COM)
+ >>> raise MalformedUserPrincipal(principal='jsmith@@EXAMPLE.COM')
Traceback (most recent call last):
...
- MalformedUserPrincipal: Principal is not of the form user@REALM: jsmith@@EXAMPLE.COM
+ MalformedUserPrincipal: Principal is not of the form user@REALM: 'jsmith@@EXAMPLE.COM'
"""
@@ -955,7 +955,7 @@ class Base64DecodeError(ExecutionError):
For example:
- >>> raise Base64DecodeError(reason="Incorrect padding")
+ >>> raise Base64DecodeError(reason='Incorrect padding')
Traceback (most recent call last):
...
Base64DecodeError: Base64 decoding failed: Incorrect padding
@@ -963,7 +963,7 @@ class Base64DecodeError(ExecutionError):
"""
errno = 4015
- format = _('Base64 decoding failed: %(reason)r')
+ format = _('Base64 decoding failed: %(reason)s')
class BuiltinError(ExecutionError):
"""
@@ -1035,14 +1035,14 @@ class DatabaseError(ExecutionError):
For example:
- >>> raise DatabaseError(desc="Can't contact LDAP server", info="")
+ >>> raise DatabaseError(desc="Can't contact LDAP server", info='')
Traceback (most recent call last):
...
DatabaseError: Can't contact LDAP server:
"""
errno = 4203
- format = _('%(desc)r:%(info)r')
+ format = _('%(desc)s:%(info)s')
class LimitsExceeded(ExecutionError):