diff options
Diffstat (limited to 'lib/puppet/sslcertificates/certificate.rb')
-rw-r--r-- | lib/puppet/sslcertificates/certificate.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/sslcertificates/certificate.rb b/lib/puppet/sslcertificates/certificate.rb index d1acc1269..8df7605d7 100644 --- a/lib/puppet/sslcertificates/certificate.rb +++ b/lib/puppet/sslcertificates/certificate.rb @@ -106,7 +106,7 @@ class Puppet::SSLCertificates::Certificate case hash[:type] when :ca, :client, :server; @type = hash[:type] else - raise "Invalid Cert type %s" % hash[:type] + raise "Invalid Cert type #{hash[:type]}" end else @type = :client |