Skip to content

Commit

Permalink
stdout/stderr are byte strings not unicode strings
Browse files Browse the repository at this point in the history
  • Loading branch information
davidvoit authored and lx183 committed Aug 27, 2024
1 parent 5dcbbce commit 4fb1f6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pywmi_wbem/wsman/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -516,8 +516,8 @@ def shell_fetch_output(self, sequence):
self.next_state()

def parse_shell_output(self):
stdout = ""
stderr = ""
stdout = b""
stderr = b""
state = ""
sequence = 0

Expand Down

0 comments on commit 4fb1f6a

Please sign in to comment.