From 6d8da4cdb98218cf7770539aa37f55ef24416d5c Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Fri, 13 Apr 2018 16:00:58 -0400 Subject: set default python to python3 Set the default python to python3 except for the py27 environment. We have to set that explicitly to override the new default. As part of updating the pep8 job to run python 3 we need to remove the use of the python 2 builtin unicode(). We can use six.text_type() to produce the same result until we drop python 2 support. Change-Id: I43c03aeb73bb8a246115400bcbd9a0a68708abd9 Signed-off-by: Doug Hellmann --- oslo_i18n/tests/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'oslo_i18n') diff --git a/oslo_i18n/tests/utils.py b/oslo_i18n/tests/utils.py index a6ad6c3..be1d94b 100644 --- a/oslo_i18n/tests/utils.py +++ b/oslo_i18n/tests/utils.py @@ -36,7 +36,7 @@ class NoDeepCopyObject(object): return str(self.value) else: def __unicode__(self): - return unicode(self.value) + return six.text_type(self.value) def __deepcopy__(self, memo): raise TypeError('Deep Copy not supported') -- cgit v1.2.1