| Index: third_party/WebKit/Tools/Scripts/webkitpy/common/system/outputtee.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/outputtee.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/outputtee.py
|
| index 66720ec0fc36b9ceb865e5409c5851de8de91cad..ef8e686acf39f8497cbb11f3123612c159cc8179 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/outputtee.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/outputtee.py
|
| @@ -33,12 +33,12 @@ import sys
|
|
|
|
|
| # Simple class to split output between multiple destinations
|
| -class Tee(object):
|
| +class Tee:
|
|
|
| def __init__(self, *files):
|
| self.files = files
|
|
|
| # Callers should pass an already encoded string for writing.
|
| - def write(self, bytes_to_write):
|
| - for fh in self.files:
|
| - fh.write(bytes_to_write)
|
| + def write(self, bytes):
|
| + for file in self.files:
|
| + file.write(bytes)
|
|
|