summaryrefslogtreecommitdiffstats
path: root/tests/utils.py
diff options
context:
space:
mode:
authorCarlos Goncalves <mail@cgoncalves.pt>2017-08-17 09:23:05 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-08-17 09:23:05 +0000
commitd2b6574994e065de13c2d31f9a6d7f27142c0a41 (patch)
treec99b6362f9e3e5640201c7ddd152871b6b03bd91 /tests/utils.py
parent38c45126cb9c993571246b307ff644b1343712c9 (diff)
parent906056bb4e594e3c0a46cf11657b3561583699b4 (diff)
Merge "fix some bugs in monitor"
Diffstat (limited to 'tests/utils.py')
-rw-r--r--tests/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utils.py b/tests/utils.py
index f57cd266..41e22353 100644
--- a/tests/utils.py
+++ b/tests/utils.py
@@ -56,7 +56,7 @@ class SSHClient(object):
ret = stdout.channel.recv_exit_status()
output = list()
for line in stdout.read().splitlines():
- output.append(line)
+ output.append(line.decode('utf-8'))
if ret:
if self.log:
self.log.debug("*** FAILED to run command %s (%s)" % (command, ret))