From 23507e6124041ed17f39db211e802495e37520e7 Mon Sep 17 00:00:00 2001 From: Jan Cholasta Date: Fri, 11 Sep 2015 13:43:28 +0200 Subject: Alias "unicode" to "str" under Python 3 The six way of doing this is to replace all occurences of "unicode" with "six.text_type". However, "unicode" is non-ambiguous and (arguably) easier to read. Also, using it makes the patches smaller, which should help with backporting. Reviewed-By: Petr Viktorin --- ipatests/test_xmlrpc/testcert.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'ipatests/test_xmlrpc/testcert.py') diff --git a/ipatests/test_xmlrpc/testcert.py b/ipatests/test_xmlrpc/testcert.py index b9a01118d..620879205 100644 --- a/ipatests/test_xmlrpc/testcert.py +++ b/ipatests/test_xmlrpc/testcert.py @@ -28,12 +28,17 @@ once per test run. import os import tempfile import shutil +import six + from ipalib import api, x509 from ipaserver.plugins import rabase from ipapython import ipautil from ipaplatform.paths import paths from ipapython.dn import DN +if six.PY3: + unicode = str + def get_testcert(subject, principal): """Get the certificate, creating it if it doesn't exist""" -- cgit