diff options
author | Ross Brattain <ross.b.brattain@intel.com> | 2017-08-15 04:44:26 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-08-15 04:44:26 +0000 |
commit | 88a06c612e3321c3e8773c0791396b391a867e6c (patch) | |
tree | c8aef709a9d2d17a8d962fb0de10e73a627bd791 | |
parent | 631162a347f8bc5f25b04729c29e4948f77b2622 (diff) | |
parent | c4221d66a9f812f4a9b10ff23f0ba14e8f689651 (diff) |
Merge "task: initialize result"
-rw-r--r-- | yardstick/cmd/commands/task.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/yardstick/cmd/commands/task.py b/yardstick/cmd/commands/task.py index 8d8ea2b3c..bd5447836 100644 --- a/yardstick/cmd/commands/task.py +++ b/yardstick/cmd/commands/task.py @@ -50,6 +50,8 @@ class TaskCommands(object): # pragma: no cover param = change_osloobj_to_paras(args) self.output_file = param.output_file + result = {} + try: result = Task().start(param, **kwargs) except Exception as e: |