summaryrefslogtreecommitdiffstats
path: root/lib/puppet/configurer/plugin_handler.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/configurer/plugin_handler.rb')
-rw-r--r--lib/puppet/configurer/plugin_handler.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/configurer/plugin_handler.rb b/lib/puppet/configurer/plugin_handler.rb
index 9e1c113f9..98c8de367 100644
--- a/lib/puppet/configurer/plugin_handler.rb
+++ b/lib/puppet/configurer/plugin_handler.rb
@@ -17,12 +17,12 @@ module Puppet::Configurer::PluginHandler
return if FileTest.directory?(file)
begin
- Puppet.info "Loading downloaded plugin %s" % file
+ Puppet.info "Loading downloaded plugin #{file}"
load file
rescue SystemExit,NoMemoryError
raise
rescue Exception => detail
- Puppet.err "Could not load downloaded file %s: %s" % [file, detail]
+ Puppet.err "Could not load downloaded file #{file}: #{detail}"
end
end
end