diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-06-29 23:51:21 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-06-29 23:51:21 +0000 |
commit | 8b60619f5857569c2971237c80cf214cb8e71b3f (patch) | |
tree | a089bce5aeef071736dfb0b5c2d8d2b02d4b7f5e /lib/puppet/parser/functions.rb | |
parent | a6dc7f2e22bf548240064a68ae2ee04309f7de24 (diff) | |
download | puppet-8b60619f5857569c2971237c80cf214cb8e71b3f.tar.gz puppet-8b60619f5857569c2971237c80cf214cb8e71b3f.tar.xz puppet-8b60619f5857569c2971237c80cf214cb8e71b3f.zip |
adding some tests for the template function
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1341 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/parser/functions.rb')
-rw-r--r-- | lib/puppet/parser/functions.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/parser/functions.rb b/lib/puppet/parser/functions.rb index 3a9f0cd35..cec7c02c5 100644 --- a/lib/puppet/parser/functions.rb +++ b/lib/puppet/parser/functions.rb @@ -142,7 +142,7 @@ module Functions raise Puppet::ParseError, "Could not interpret template %s: %s" % [file, detail] end - end.join("\n") + end.join("") end end end |