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 fa45d1f523080c6b23a8b067eeb3e2bf3ca504ce..06036fcc4a1ee4b6e0ee4d49a8af0306f79a4f3e 100644 |
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/outputtee.py |
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/outputtee.py |
@@ -64,7 +64,7 @@ class OutputTee: |
@staticmethod |
def _open_log_file(log_path): |
- (log_directory, log_name) = os.path.split(log_path) |
+ log_directory, _ = os.path.split(log_path) |
if log_directory and not os.path.exists(log_directory): |
os.makedirs(log_directory) |
return codecs.open(log_path, "a+", "utf-8") |