diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2005-09-26 19:07:17 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2005-09-26 19:07:17 +0000 |
commit | 5bb8c4a0ae72d84693239c53e71306438a399588 (patch) | |
tree | c0ad7035f8ac97d2d40dc1b741962a7f83e3c272 /lib/puppet | |
parent | abcac81e8ab44a4befccf73799273cba14db2c27 (diff) | |
download | puppet-5bb8c4a0ae72d84693239c53e71306438a399588.tar.gz puppet-5bb8c4a0ae72d84693239c53e71306438a399588.tar.xz puppet-5bb8c4a0ae72d84693239c53e71306438a399588.zip |
fixing output in noop
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@705 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet')
-rw-r--r-- | lib/puppet/statechange.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/statechange.rb b/lib/puppet/statechange.rb index 6db2aefb0..e1b59e019 100644 --- a/lib/puppet/statechange.rb +++ b/lib/puppet/statechange.rb @@ -37,7 +37,7 @@ module Puppet if @state.noop @state.parent.log "%s should be %s" % - [@state, @should] + [@state, state.should_to_s] #Puppet.debug "%s is noop" % @state return nil end |