diff options
author | James Turnbull <james@lovedthanlost.net> | 2008-10-02 14:04:38 +1000 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2008-10-03 10:49:07 +1000 |
commit | 6a0b3348065bba7438b23ebbada67c552f33597b (patch) | |
tree | 740b9afbce368d46a4d222ec450088b2bf241c6a | |
parent | 655f378af38ff5cd5593f7f7dbb6e77fdda2864a (diff) | |
download | puppet-6a0b3348065bba7438b23ebbada67c552f33597b.tar.gz puppet-6a0b3348065bba7438b23ebbada67c552f33597b.tar.xz puppet-6a0b3348065bba7438b23ebbada67c552f33597b.zip |
Fixed error message typo
-rw-r--r-- | lib/puppet/network/xmlrpc/client.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/network/xmlrpc/client.rb b/lib/puppet/network/xmlrpc/client.rb index e0fb5a0ab..6d77286d3 100644 --- a/lib/puppet/network/xmlrpc/client.rb +++ b/lib/puppet/network/xmlrpc/client.rb @@ -51,7 +51,7 @@ module Puppet::Network end ["certificate verify failed", "hostname was not match", "hostname not match"].each do |str| if detail.message.include?(str) - Puppet.warning "Certificate validation failed; considering using the certname configuration option" + Puppet.warning "Certificate validation failed; consider using the certname configuration option" end end raise XMLRPCClientError, |