Skip to content

Commit bcb87ed

Browse files
committed
Forgot to do a decode in the pquery function in the tests
1 parent 64576f8 commit bcb87ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def pquery(command, stdin=None, **kwargs):
4141
if proc.returncode != 0:
4242
raise ProcessException(proc.returncode)
4343

44-
return stdout
44+
return stdout.decode("utf-8")
4545

4646
# Directory navigation
4747
@contextlib.contextmanager

0 commit comments

Comments
 (0)