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

Unified Diff: gclient_utils.py

Issue 231623002: Fix order of format string parameters. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 6 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient_utils.py
diff --git a/gclient_utils.py b/gclient_utils.py
index f89b601f3a201146e8446aee570cd3bc30f7762a..c394862f76645aaef15b9352f68a3585be422998 100644
--- a/gclient_utils.py
+++ b/gclient_utils.py
@@ -776,7 +776,7 @@ class ExecutionQueue(object):
----------------------------------------
%s
----------------------------------------""" % (
- task.name, comment, task.outbuf.getvalue().strip(), elapsed)
+ task.name, comment, elapsed, task.outbuf.getvalue().strip())
def flush(self, *args, **kwargs):
"""Runs all enqueued items until all are executed."""
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698