Skip to content

Commit

Permalink
decode text returned
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-mangin committed Jul 14, 2024
1 parent babbe48 commit 8ba28e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qa/bin/functional
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 8ba28e7

Please sign in to comment.