summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHong Guan <hg4105@att.com>2018-07-10 10:29:04 -0400
committerHong Guan <hg4105@att.com>2018-07-10 10:30:23 -0400
commitc5552def064cc4643ac879ec5f116c27f4cd088e (patch)
tree41f502275704b19f0c33f4e00ade449f2fd81d90
parentb085856894e63b5b0990280c622a04bb0e80539c (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.py10
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