summaryrefslogtreecommitdiffstats
path: root/ipalib/constants.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-12-18 01:57:39 -0700
committerJason Gerard DeRose <jderose@redhat.com>2008-12-18 01:57:39 -0700
commitcb2f294cfef9b47e03b82c85cf1db7e7bc3574ef (patch)
tree253bcded0fed49d3f71c8041d71ab808fcce1304 /ipalib/constants.py
parent99363131df63f3b1d22bf325282eee5671eff924 (diff)
downloadfreeipa-cb2f294cfef9b47e03b82c85cf1db7e7bc3574ef.tar.gz
freeipa-cb2f294cfef9b47e03b82c85cf1db7e7bc3574ef.tar.xz
freeipa-cb2f294cfef9b47e03b82c85cf1db7e7bc3574ef.zip
New Param: added missing unit tests for TypeError and ValueError cases in parse_param_spec()
Diffstat (limited to 'ipalib/constants.py')
-rw-r--r--ipalib/constants.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/constants.py b/ipalib/constants.py
index d028a0013..ad1e3f7cb 100644
--- a/ipalib/constants.py
+++ b/ipalib/constants.py
@@ -26,7 +26,7 @@ All constants centralised in one file.
NULLS = (None, '', u'', tuple(), [])
-TYPE_ERROR = '%s: need a %r; got %r (a %r)'
+TYPE_ERROR = '%s: need a %r; got %r (which is a %r)'
CALLABLE_ERROR = '%s: need a callable; got %r (a %r)'