summaryrefslogtreecommitdiffstats
path: root/lib/puppet/parser/compiler.rb
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2008-05-01 14:04:52 -0500
committerLuke Kanies <luke@madstop.com>2008-05-01 14:04:52 -0500
commitc57e194418b658ddcd82610c3c273bfa17ba5f8b (patch)
tree5b9f4efc69060dd16aea398472c682b0bc99649a /lib/puppet/parser/compiler.rb
parent5a2bbad8b7239d64ffa4ad51ab1a68d4926c6a72 (diff)
downloadpuppet-c57e194418b658ddcd82610c3c273bfa17ba5f8b.tar.gz
puppet-c57e194418b658ddcd82610c3c273bfa17ba5f8b.tar.xz
puppet-c57e194418b658ddcd82610c3c273bfa17ba5f8b.zip
Fixing an error message to be more clear
Diffstat (limited to 'lib/puppet/parser/compiler.rb')
-rw-r--r--lib/puppet/parser/compiler.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/parser/compiler.rb b/lib/puppet/parser/compiler.rb
index 8fba41121..d67b3d275 100644
--- a/lib/puppet/parser/compiler.rb
+++ b/lib/puppet/parser/compiler.rb
@@ -332,7 +332,7 @@ class Puppet::Parser::Compiler
unless remaining.empty?
fail Puppet::ParseError,
- "Could not find object(s) %s" % remaining.collect { |o|
+ "Could not find resource(s) %s for overriding" % remaining.collect { |o|
o.ref
}.join(", ")
end