diff options
author | Hong Guan <hg4105@att.com> | 2018-07-10 10:29:04 -0400 |
---|---|---|
committer | Hong Guan <hg4105@att.com> | 2018-07-10 10:30:23 -0400 |
commit | c5552def064cc4643ac879ec5f116c27f4cd088e (patch) | |
tree | 41f502275704b19f0c33f4e00ade449f2fd81d90 | |
parent | b085856894e63b5b0990280c622a04bb0e80539c (diff) |
fixed code format bug
Change-Id: I159c85f44118ba387c2a5f9438684b45405c6edd
Issue-ID: CCSDK-354
Signed-off-by: Hong Guan <hg4105@att.com>
-rw-r--r-- | helm/plugin/workflows.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/helm/plugin/workflows.py b/helm/plugin/workflows.py index a37293e..c21f27c 100644 --- a/helm/plugin/workflows.py +++ b/helm/plugin/workflows.py @@ -50,11 +50,11 @@ def upgrade(node_instance_id, config_json, config_url, config_format, else: raise NonRecoverableError("Unable to get Json config input") -kwargs['chart_version'] = str(chartVersion) -kwargs['chart_repo'] = str(chartRepo) -operation_args = {'operation': 'upgrade', } -operation_args['kwargs'] = kwargs -node_instance.execute_operation(**operation_args) + kwargs['chart_version'] = str(chartVersion) + kwargs['chart_repo'] = str(chartRepo) + operation_args = {'operation': 'upgrade', } + operation_args['kwargs'] = kwargs + node_instance.execute_operation(**operation_args) @workflow |