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 8c6c0bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions qa/bin/functional
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@ 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'message: {self.message}')
print(f'stdout: {self.stdout.decode()}')
print(f'stderr: {self.stderr.decode()}')
print(f'message: {self.message.decode()}')
return False

def collect(self):
Expand Down

0 comments on commit 8c6c0bd

Please sign in to comment.