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/frontend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipalib/frontend.py') diff --git a/ipalib/frontend.py b/ipalib/frontend.py index 4d0df3a5..e3828bf8 100644 --- a/ipalib/frontend.py +++ b/ipalib/frontend.py @@ -301,7 +301,7 @@ class HasParam(Plugin): >>> bar = Env(context='bar') >>> another = Env(context='another') >>> (foo.context, bar.context, another.context) - ('foo', 'bar', 'another') + (u'foo', u'bar', u'another') >>> list(eg._filter_param_by_context('args', foo)) [Str('foo_only', include=['foo']), Str('not_bar', exclude=['bar']), Str('both')] >>> list(eg._filter_param_by_context('args', bar)) -- cgit