From 8ba28e712e3afc595a33e31379f743012250ab92 Mon Sep 17 00:00:00 2001 From: Thomas Mangin Date: Sun, 14 Jul 2024 21:58:55 +0100 Subject: [PATCH] decode text returned --- qa/bin/functional | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qa/bin/functional b/qa/bin/functional index 059dfdf5d..f2406e1fc 100755 --- a/qa/bin/functional +++ b/qa/bin/functional @@ -129,8 +129,8 @@ class Exec(object): print(reason) print(f'> {self.command}') print(f'return: {self.code}') - print(f'stdout: {self.stdout}') - print(f'stderr: {self.stderr}') + print(f'stdout: {self.stdout.decode()}') + print(f'stderr: {self.stderr.decode()}') print(f'message: {self.message}') return False