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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/style/patchreader.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/style/patchreader.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/style/patchreader.py b/third_party/WebKit/Tools/Scripts/webkitpy/style/patchreader.py
index 8495cd054560a04e794f098953f463e240b3a3a0..cf81cd9e0806e17ca602df298c0fba4116ea3a42 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/style/patchreader.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/style/patchreader.py
@@ -62,7 +62,7 @@ class PatchReader(object):
for path, diff_file in patch_files.iteritems():
line_numbers = diff_file.added_or_modified_line_numbers()
- _log.debug('Found %s new or modified lines in: %s' % (len(line_numbers), path))
+ _log.debug('Found %s new or modified lines in: %s', len(line_numbers), path)
if not line_numbers:
match = re.search("\s*png$", path)

Powered by Google App Engine
This is Rietveld 408576698