summaryrefslogtreecommitdiffstats
path: root/lib/puppet/indirector/key/file.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/indirector/key/file.rb')
-rw-r--r--lib/puppet/indirector/key/file.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/indirector/key/file.rb b/lib/puppet/indirector/key/file.rb
index a413ccf63..51b5cfd3d 100644
--- a/lib/puppet/indirector/key/file.rb
+++ b/lib/puppet/indirector/key/file.rb
@@ -25,7 +25,7 @@ class Puppet::SSL::Key::File < Puppet::Indirector::SslFile
begin
File.unlink(public_key_path(request.key))
rescue => detail
- raise Puppet::Error, "Could not remove %s public key: %s" % [request.key, detail]
+ raise Puppet::Error, "Could not remove #{request.key} public key: #{detail}"
end
end
@@ -36,7 +36,7 @@ class Puppet::SSL::Key::File < Puppet::Indirector::SslFile
begin
Puppet.settings.writesub(:publickeydir, public_key_path(request.key)) { |f| f.print request.instance.content.public_key.to_pem }
rescue => detail
- raise Puppet::Error, "Could not write %s: %s" % [request.key, detail]
+ raise Puppet::Error, "Could not write #{request.key}: #{detail}"
end
end
end