diff options
author | 2019-05-12 12:58:29 +0200 | |
---|---|---|
committer | 2019-05-24 11:14:13 +0200 | |
commit | 3aa980445f887fca83ada5e8a67dfc56931b54b0 (patch) | |
tree | 0f4e564b3544c4de72ad610630b7f9ac97a72120 /functest_kubernetes | |
parent | bb508cf6c13965c17c6216b0e3eba26272914847 (diff) |
Update to Python3
Functest containers leverage on Python3 instead of python2.
https://mail.python.org/pipermail/python-dev/2018-March/152348.html
Change-Id: I4f148e91259377b4e3b9076621f192a6e00f6009
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit e38bb1ee4c2a5c2e03ad7af46631da37c5f189ba)
Diffstat (limited to 'functest_kubernetes')
-rw-r--r-- | functest_kubernetes/k8stest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functest_kubernetes/k8stest.py b/functest_kubernetes/k8stest.py index 76693e91..c78959ca 100644 --- a/functest_kubernetes/k8stest.py +++ b/functest_kubernetes/k8stest.py @@ -46,7 +46,7 @@ class K8sTesting(testcase.TestCase): process = subprocess.Popen(cmd_line, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) - output = process.stdout.read() + output = process.stdout.read().decode("utf-8") if ('Error loading client' in output or 'Unexpected error' in output): raise Exception(output) |