summaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/keys.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/parser/functions/keys.rb')
-rw-r--r--lib/puppet/parser/functions/keys.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/puppet/parser/functions/keys.rb b/lib/puppet/parser/functions/keys.rb
index f0d13b6..199e319 100644
--- a/lib/puppet/parser/functions/keys.rb
+++ b/lib/puppet/parser/functions/keys.rb
@@ -8,8 +8,7 @@ Returns the keys of a hash as an array.
EOS
) do |arguments|
- raise(Puppet::ParseError, "keys(): Wrong number of arguments " +
- "given (#{arguments.size} for 1)") if arguments.size < 1
+ raise(Puppet::ParseError, "keys(): Wrong number of arguments given (#{arguments.size} for 1)") if arguments.size < 1
hash = arguments[0]