Fixed bug MRN-607

Change-Id: I2595db346495071d2094f85439fca3d0fd28ec21
This commit is contained in:
Timur Nurlygayanov 2013-07-18 02:50:16 -04:00
parent 8870a1bc32
commit 9fe43ab013

View File

@ -90,7 +90,7 @@ def prepare_user_data(context, hostname, service, unit,
def set_config_params(template_data, replacements):
for key in replacements:
template_data = template_data.replace(key, replacements[key])
template_data = template_data.replace(key, str(replacements[key]))
return template_data