From 1f4e71b0b031852eeb6a32f340da8ea834da4379 Mon Sep 17 00:00:00 2001 From: "szager@chromium.org" Date: Wed, 9 Apr 2014 19:45:40 +0000 Subject: [PATCH] Fix order of format string parameters. BUG= Review URL: https://codereview.chromium.org/231623002 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@262776 0039d316-1c4b-4281-b951-d872f2087c98 --- gclient_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gclient_utils.py b/gclient_utils.py index f89b601f3..c394862f7 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."""