diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-03-18 16:39:48 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-03-18 16:39:48 +0000 |
commit | a76afb7b9298854ebbc2307c1a41adf0b8fb51b9 (patch) | |
tree | 21c894a910f0d356b2ec5cb2d95ffab6b2b5e07f | |
parent | 4a6d705bc086540e7d569c88f0130ad599bed5b1 (diff) | |
download | puppet-a76afb7b9298854ebbc2307c1a41adf0b8fb51b9.tar.gz puppet-a76afb7b9298854ebbc2307c1a41adf0b8fb51b9.tar.xz puppet-a76afb7b9298854ebbc2307c1a41adf0b8fb51b9.zip |
Trying to clean up the error message from #490. It looks like the problem is just a failure in one of the types, and it has nothing to do with the state file.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2287 980ebf18-57e1-0310-9a29-db15c13687c0
-rw-r--r-- | lib/puppet/transaction.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/transaction.rb b/lib/puppet/transaction.rb index fdc99ca21..7199ac3cd 100644 --- a/lib/puppet/transaction.rb +++ b/lib/puppet/transaction.rb @@ -61,7 +61,7 @@ class Transaction puts detail.backtrace end - resource.err "Failed to retrieve current state: %s" % detail + resource.err "Failed to retrieve current state of resource: %s" % detail # Mark that it failed @failures[resource] += 1 |