Commit 1f4e71b0 authored by szager@chromium.org's avatar szager@chromium.org

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
parent d09487b8
...@@ -776,7 +776,7 @@ class ExecutionQueue(object): ...@@ -776,7 +776,7 @@ class ExecutionQueue(object):
---------------------------------------- ----------------------------------------
%s %s
----------------------------------------""" % ( ----------------------------------------""" % (
task.name, comment, task.outbuf.getvalue().strip(), elapsed) task.name, comment, elapsed, task.outbuf.getvalue().strip())
def flush(self, *args, **kwargs): def flush(self, *args, **kwargs):
"""Runs all enqueued items until all are executed.""" """Runs all enqueued items until all are executed."""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment