diff options
author | rexlee8776 <limingjiang@huawei.com> | 2018-03-08 11:01:37 +0000 |
---|---|---|
committer | rexlee8776 <limingjiang@huawei.com> | 2018-03-08 11:05:30 +0000 |
commit | f982907f21554cfde43cfdd3d7f3a8e95ba3876c (patch) | |
tree | 8062b77980728711bacaf12a03b92beb90ee21ea | |
parent | d5a2c20d8de2796b2d2e2143ddfb2ba839a0e999 (diff) |
[bugfix] report generate command print error
JIRA: YARDSTICK-1056
Change-Id: I32ab9ae7482f6b81e00d6d3e7e858d980a2dd95f
Signed-off-by: rexlee8776 <limingjiang@huawei.com>
-rw-r--r-- | yardstick/benchmark/core/task.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yardstick/benchmark/core/task.py b/yardstick/benchmark/core/task.py index 7f6309a7e..e7acde696 100644 --- a/yardstick/benchmark/core/task.py +++ b/yardstick/benchmark/core/task.py @@ -149,7 +149,7 @@ class Task(object): # pragma: no cover total_end_time - total_start_time) LOG.info('To generate report, execute command "yardstick report ' - 'generate %(task_id)s <yaml_name>s"', self.task_id) + 'generate %s <YAML_NAME>"', self.task_id) LOG.info("Task ALL DONE, exiting") return result |