summaryrefslogtreecommitdiffstats
path: root/lib/puppet/client
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-12-28 08:06:46 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-12-28 08:06:46 +0000
commit652982257d7d4b1fdfada25880d70b29702a4c69 (patch)
tree9c538a33e20f7ca131ece23fde1f1c7824f1a5f3 /lib/puppet/client
parent038d6a6e79da9db5a12ca3e78c4539178cc49b44 (diff)
I have not yet finished testing, but most of the providers now successfully pass arrays to execute() instead of strings, which means that the vast majority of execution problems are now gone. I will finish testing tomorrow, hopefully, and will also hopefully be able to verify that the execution-related bugs are fixed.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1979 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/client')
-rw-r--r--lib/puppet/client/pelement.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/client/pelement.rb b/lib/puppet/client/pelement.rb
index 1dda36ddc..858bce811 100644
--- a/lib/puppet/client/pelement.rb
+++ b/lib/puppet/client/pelement.rb
@@ -28,7 +28,7 @@ class Puppet::Client::PElement < Puppet::Client
end
def describe(type, name, retrieve = false, ignore = false)
- Puppet.info "Describing %s[%s]" % [type, name]
+ Puppet.info "Describing %s[%s]" % [type.capitalize, name]
text = @driver.describe(type, name, retrieve, ignore, "yaml")
object = nil