summaryrefslogtreecommitdiff
path: root/heat/objects
diff options
context:
space:
mode:
authorBéla Vancsics <vancsics@inf.u-szeged.hu>2017-03-01 11:45:49 +0100
committerBéla Vancsics <vancsics@inf.u-szeged.hu>2017-03-01 11:46:25 +0100
commit3aee78d863155ddab39dc18f066fc5d7e14866de (patch)
treea034e03ac5768c76f9e5cc13a99626988ea3ae10 /heat/objects
parentcdac11ed01ab8b7a978ab687659d453dd69d6607 (diff)
downloadheat-3aee78d863155ddab39dc18f066fc5d7e14866de.tar.gz
Remove unused variable
TrivialFix Change-Id: I81e3a62c890f0ad043dd604443f56766ba6c11b4
Diffstat (limited to 'heat/objects')
-rw-r--r--heat/objects/raw_template.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/heat/objects/raw_template.py b/heat/objects/raw_template.py
index 06adc60b7..414bf703f 100644
--- a/heat/objects/raw_template.py
+++ b/heat/objects/raw_template.py
@@ -90,7 +90,7 @@ class RawTemplate(
@classmethod
def encrypt_hidden_parameters(cls, tmpl):
if cfg.CONF.encrypt_parameters_and_properties:
- for param_name, param in tmpl.env.params.items():
+ for param_name in tmpl.env.params.keys():
if not tmpl.param_schemata()[param_name].hidden:
continue
clear_text_val = tmpl.env.params.get(param_name)