diff options
author | Luke Kanies <luke@madstop.com> | 2008-05-01 14:04:52 -0500 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2008-05-01 14:04:52 -0500 |
commit | c57e194418b658ddcd82610c3c273bfa17ba5f8b (patch) | |
tree | 5b9f4efc69060dd16aea398472c682b0bc99649a /lib/puppet | |
parent | 5a2bbad8b7239d64ffa4ad51ab1a68d4926c6a72 (diff) | |
download | puppet-c57e194418b658ddcd82610c3c273bfa17ba5f8b.tar.gz puppet-c57e194418b658ddcd82610c3c273bfa17ba5f8b.tar.xz puppet-c57e194418b658ddcd82610c3c273bfa17ba5f8b.zip |
Fixing an error message to be more clear
Diffstat (limited to 'lib/puppet')
-rw-r--r-- | lib/puppet/parser/compiler.rb | 2 |
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 |