diff options
author | Josh Matthews <josh@joshmatthews.net> | 2018-11-13 23:02:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-13 23:02:33 -0500 |
commit | 956b3d9eec63230c59a8fa46bc3884f5a8e3d45f (patch) | |
tree | 09f6ce1d3c7910cac11126c8fe7b52584ad74cb2 | |
parent | dd2e07c06716331a69e7d0a4fae9b1ace48b6d5a (diff) | |
download | servo-jdm-patch-22.tar.gz servo-jdm-patch-22.zip |
Try decoding instead?jdm-patch-22
-rw-r--r-- | python/servo/testing_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index ef53694d045..5fcf915dff6 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -605,7 +605,7 @@ class MachCommands(CommandBase): process = subprocess.Popen(args, stdout=subprocess.PIPE) try: while 1: - line = process.stdout.readline().encode('ascii', 'replace') + line = process.stdout.readline().decode('ascii', 'replace') if len(line) == 0: print("EOF without finding the expected line") return 1 |