Skip to content

Commit

Permalink
fix: Error in decoding system commands
Browse files Browse the repository at this point in the history
  • Loading branch information
noseglasses authored Jul 24, 2024
1 parent 1396628 commit aa6129c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/elf_diff/system_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def runSystemCommand(cmd: List[str]) -> str:

o, e = proc.communicate() # pylint: disable=unused-variable

output: str = o.decode("utf8")
output: str = o.decode("utf8", "ignore")
# error = e.decode('utf8')

return output

0 comments on commit aa6129c

Please sign in to comment.