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.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/parser/functions/include.rb b/lib/puppet/parser/functions/include.rb
index 213a04136..a8b6f175b 100644
--- a/lib/puppet/parser/functions/include.rb
+++ b/lib/puppet/parser/functions/include.rb
@@ -19,7 +19,7 @@ Puppet::Parser::Functions::newfunction(:include, :doc => "Evaluate one or more c
str += " " + missing.join(", ")
if n = namespaces and ! n.empty? and n != [""]
- str += " in namespaces %s" % @namespaces.join(", ")
+ str += " in namespaces #{@namespaces.join(", ")}"
end
self.fail Puppet::ParseError, str
end