Skip to content

Commit 8bac1cf

Browse files
committed
issue #482: another Py3 fix
1 parent 1cad041 commit 8bac1cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/testlib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ def wait_for_sshd(self):
457457
def check_processes(self):
458458
args = ['docker', 'exec', self.container_name, 'ps', '-o', 'comm=']
459459
counts = {}
460-
for comm in subprocess__check_output(args).splitlines():
460+
for comm in subprocess__check_output(args).decode().splitlines():
461461
comm = comm.strip()
462462
counts[comm] = counts.get(comm, 0) + 1
463463

0 commit comments

Comments
 (0)