From 7a648c54d165822a790c6a59330e0121e098641c Mon Sep 17 00:00:00 2001 From: Kent Wills Date: Thu, 10 Sep 2015 18:04:33 -0700 Subject: [PATCH] python test-tty hotfix --- tests/test-tty | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-tty b/tests/test-tty index 9745ad7..c9d7ac8 100755 --- a/tests/test-tty +++ b/tests/test-tty @@ -24,7 +24,7 @@ def tac(dumb_init): def readall(fd): """read until EOF""" from os import read - result = '' + result = b'' while True: try: chunk = read(fd, 1 << 10)