diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2008-12-18 02:08:41 -0700 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2008-12-18 02:08:41 -0700 |
commit | 4d1681176afc45c57fb4316892f939bda1bacf1d (patch) | |
tree | 04abc4122c0dc3ab1d8de54858b94f72af0e5f71 /ipalib/constants.py | |
parent | cb2f294cfef9b47e03b82c85cf1db7e7bc3574ef (diff) | |
download | freeipa-4d1681176afc45c57fb4316892f939bda1bacf1d.tar.gz freeipa-4d1681176afc45c57fb4316892f939bda1bacf1d.tar.xz freeipa-4d1681176afc45c57fb4316892f939bda1bacf1d.zip |
New Param: added unit tests for TypeError cases in DefaultFrom.__init__()
Diffstat (limited to 'ipalib/constants.py')
-rw-r--r-- | ipalib/constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/constants.py b/ipalib/constants.py index ad1e3f7cb..ef2aef72c 100644 --- a/ipalib/constants.py +++ b/ipalib/constants.py @@ -29,7 +29,7 @@ NULLS = (None, '', u'', tuple(), []) TYPE_ERROR = '%s: need a %r; got %r (which is a %r)' -CALLABLE_ERROR = '%s: need a callable; got %r (a %r)' +CALLABLE_ERROR = '%s: need a callable; got %r (which is a %r)' # Used for a tab (or indentation level) when formatting for CLI: |