summaryrefslogtreecommitdiff
path: root/heatclient/common/utils.py
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.com>2020-03-28 15:38:59 +0100
committerAndreas Jaeger <jaegerandi@gmail.com>2020-03-31 10:04:12 +0000
commit9dede4eb2b824b21c0031507bd986796f535810c (patch)
treef7b608f8e48da9b3318137662470ef12a11d9f71 /heatclient/common/utils.py
parent6b071d397e9ba8ff81962f5709f3d14d6408dd2f (diff)
downloadpython-heatclient-9dede4eb2b824b21c0031507bd986796f535810c.tar.gz
Update hacking for Python3ussuri-em2.1.0
The repo is Python 3 now, so update hacking to version 3.0 which supports Python 3. Fix problems found. Change-Id: I82c745f5b1236844deec4538be84037a64eebeee
Diffstat (limited to 'heatclient/common/utils.py')
-rw-r--r--heatclient/common/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/heatclient/common/utils.py b/heatclient/common/utils.py
index ae32514..cb2cb88 100644
--- a/heatclient/common/utils.py
+++ b/heatclient/common/utils.py
@@ -377,8 +377,8 @@ def format_parameter_file(param_files, template_file=None,
param_file = {}
for key, value in params.items():
- param_file[key] = resolve_param_get_file(value,
- template_base_url)
+ param_file[key] = resolve_param_get_file(value,
+ template_base_url)
return param_file