diff options
-rw-r--r-- | test/service.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/service.py b/test/service.py index 2f66120..865129b 100644 --- a/test/service.py +++ b/test/service.py @@ -54,7 +54,7 @@ class SpawnedService(threading.Thread): if self.child.stdout in rds: line = self.child.stdout.readline() - self.captured_stdout.append(line) + self.captured_stdout.append(line.decode('utf-8')) if self.child.stderr in rds: line = self.child.stderr.readline() |