From 90d74a1e55a16cd8611bbd5e7c0a72411b991299 Mon Sep 17 00:00:00 2001 From: Steven Hardy Date: Tue, 23 Jun 2015 14:38:38 +0100 Subject: [PATCH] Fix docstring error for Join functions The docstring for list_join/Fn::Join has a minor mistake, the list to be joined in a list inside the list containing the delimiter. Change-Id: I5ae13b4e145a52d41aa2cd69ba53a7d01509a33a --- heat/engine/cfn/functions.py | 2 +- heat/engine/hot/functions.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/heat/engine/cfn/functions.py b/heat/engine/cfn/functions.py index 9171a3d9c2..e566695ba0 100644 --- a/heat/engine/cfn/functions.py +++ b/heat/engine/cfn/functions.py @@ -286,7 +286,7 @@ class Join(function.Function): Takes the form:: - { "Fn::Join" : [ "", [ "", "", ... ] } + { "Fn::Join" : [ "", [ "", "", ... ] ] } And resolves to:: diff --git a/heat/engine/hot/functions.py b/heat/engine/hot/functions.py index f433e7e048..46d3c80957 100644 --- a/heat/engine/hot/functions.py +++ b/heat/engine/hot/functions.py @@ -231,7 +231,7 @@ class Join(cfn_funcs.Join): Takes the form:: - { "list_join" : [ "", [ "", "", ... ] } + { "list_join" : [ "", [ "", "", ... ] ] } And resolves to::