summaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions
diff options
context:
space:
mode:
authorUwe Stuehler <ustuehler@team.mobile.de>2012-10-23 16:43:03 +0200
committerAdrien Thebo <git@somethingsinistral.net>2013-03-18 15:04:50 -0700
commite80207bede37e498c32bea6d56c46f1dd709721e (patch)
treee20db53336a3034205263d09d7f6bbf0eec1df2e /lib/puppet/parser/functions
parent1e2ee5bd01b85258548bb7c0aabe4ce0938b2560 (diff)
Fix number of arguments check in flatten()
The function only uses the first argument, so raise an error with too few arguments *and* with too many arguments.
Diffstat (limited to 'lib/puppet/parser/functions')
-rw-r--r--lib/puppet/parser/functions/flatten.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/parser/functions/flatten.rb b/lib/puppet/parser/functions/flatten.rb
index 781da78..a1ed183 100644
--- a/lib/puppet/parser/functions/flatten.rb
+++ b/lib/puppet/parser/functions/flatten.rb
@@ -16,7 +16,7 @@ Would return: ['a','b','c']
) do |arguments|
raise(Puppet::ParseError, "flatten(): Wrong number of arguments " +
- "given (#{arguments.size} for 1)") if arguments.size < 1
+ "given (#{arguments.size} for 1)") if arguments.size != 1
array = arguments[0]