From fec6fc2e8c373c698966816ee97fe3a660eb503e Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Tue, 7 Oct 2008 22:35:45 -0600 Subject: Fixed example in raise_TypeError() docstring (thanks, mnagy) --- ipalib/errors.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ipalib/errors.py b/ipalib/errors.py index a961ecb60..097747ac7 100644 --- a/ipalib/errors.py +++ b/ipalib/errors.py @@ -43,12 +43,12 @@ def raise_TypeError(value, type_, name): Here is an example: - >>> raise_TypeError('message', str, u'Hello.') + >>> raise_TypeError(u'Hello, world!', str, 'message') Traceback (most recent call last): File "", line 1, in - File "/home/jderose/projects/freeipa2/ipalib/errors.py", line 61, in raise_TypeError + File "ipalib/errors.py", line 65, in raise_TypeError raise e - TypeError: message: need a ; got u'Hello.' + TypeError: message: need a ; got u'Hello, world!' :param value: The value (of incorrect type) passed as argument. :param type_: The type expected for the argument. -- cgit