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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/system/workspace.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/common/system/workspace.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/workspace.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/workspace.py
index a8a613975c2a93af0672152183eaa3e9826fcc13..b4db25d1d428b6d3a971cfe4bb3ffa2709f0578b 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/workspace.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/workspace.py
@@ -68,7 +68,7 @@ class Workspace(object):
try:
self._executive.run_command(['zip', '-9', '-r', zip_path, '.'], cwd=source_path)
except ScriptError as e:
- _log.error("Workspace.create_zip failed in %s:\n%s" % (source_path, e.message_with_output()))
+ _log.error("Workspace.create_zip failed in %s:\n%s", source_path, e.message_with_output())
return None
return zip_class(zip_path)

Powered by Google App Engine
This is Rietveld 408576698