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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/flaky_tests.py

Issue 2188623002: Change logging statements to not use the "%" operator. (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/tool/commands/flaky_tests.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/flaky_tests.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/flaky_tests.py
index 172570c1a4833dde315ce2d7d5137147c0ba5bca..86f7b937381070d871f7bc389b7526c2fdb1658f 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/flaky_tests.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/flaky_tests.py
@@ -83,7 +83,7 @@ Flakiness dashboard: %s
# TODO(ojan): We should also skip bots that haven't uploaded recently,
# e.g. if they're >24h stale.
if not expectations:
- _log.error("Can't load flakiness data for builder: %s" % builder_name)
+ _log.error("Can't load flakiness data for builder: %s", builder_name)
continue
for line in expectations.expectation_lines(only_ignore_very_flaky=True):

Powered by Google App Engine
This is Rietveld 408576698