Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1085)

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/system/outputtee.py

Issue 2136793002: Remove all unused variables. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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")

Powered by Google App Engine
This is Rietveld 408576698