From 766757e4d4d57c0dad881c1176ae318462203adc Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Mon, 22 Feb 2010 14:29:26 -0500 Subject: Fix unicode failures in Env tests and dn failures in XML-RPC tests --- ipalib/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipalib/__init__.py') diff --git a/ipalib/__init__.py b/ipalib/__init__.py index beaf0ab51..51b63c9fc 100644 --- a/ipalib/__init__.py +++ b/ipalib/__init__.py @@ -754,7 +754,7 @@ For example: >>> api.register(motd) >>> api.finalize() >>> api.Command.motd() -{'result': 'Hello, world!'} +{'result': u'Hello, world!'} Also see the `plugable.API.bootstrap_with_global_options()` method. -- cgit