summaryrefslogtreecommitdiff
path: root/lib/puppet/parser
diff options
context:
space:
mode:
authorAshley Penney <ashley.penney@puppetlabs.com>2014-07-31 15:01:20 -0400
committerAshley Penney <ashley.penney@puppetlabs.com>2014-07-31 15:01:20 -0400
commite310b1fdab7be1478b464167d2be20f0d4e5f63a (patch)
tree54a0ec7647debbf3176e5e71d66257f223a47330 /lib/puppet/parser
parentc5f6c26d67a4f3777cec4af1a3850a6a5a2ccbc1 (diff)
parenta6ad0af08e408adbb4b25684b18feb8aee12cf3e (diff)
Merge pull request #306 from hunner/fix_concat
(MODULES-1195) Rebase of #202
Diffstat (limited to 'lib/puppet/parser')
-rw-r--r--lib/puppet/parser/functions/concat.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/puppet/parser/functions/concat.rb b/lib/puppet/parser/functions/concat.rb
index 6c86382..0d35b07 100644
--- a/lib/puppet/parser/functions/concat.rb
+++ b/lib/puppet/parser/functions/concat.rb
@@ -28,11 +28,7 @@ Would result in:
raise(Puppet::ParseError, 'concat(): Requires array to work with')
end
- if b.is_a?(Array)
- result = a.concat(b)
- else
- result = a << b
- end
+ result = a + Array(b)
return result
end