summaryrefslogtreecommitdiffstats
path: root/lib/puppet/parser/functions/include.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/parser/functions/include.rb')
-rw-r--r--lib/puppet/parser/functions/include.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/puppet/parser/functions/include.rb b/lib/puppet/parser/functions/include.rb
index a8b6f175b..d1bafa54a 100644
--- a/lib/puppet/parser/functions/include.rb
+++ b/lib/puppet/parser/functions/include.rb
@@ -12,9 +12,7 @@ Puppet::Parser::Functions::newfunction(:include, :doc => "Evaluate one or more c
unless missing.empty?
# Throw an error if we didn't evaluate all of the classes.
str = "Could not find class"
- if missing.length > 1
- str += "es"
- end
+ str += "es" if missing.length > 1
str += " " + missing.join(", ")