summaryrefslogtreecommitdiffstats
path: root/lib/puppet/network/format_handler.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/network/format_handler.rb')
-rw-r--r--lib/puppet/network/format_handler.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/puppet/network/format_handler.rb b/lib/puppet/network/format_handler.rb
index 70e33a054..b5817d544 100644
--- a/lib/puppet/network/format_handler.rb
+++ b/lib/puppet/network/format_handler.rb
@@ -9,14 +9,12 @@ module Puppet::Network::FormatHandler
attr_reader :format
def protect(method, args)
- begin
Puppet::Network::FormatHandler.format(format).send(method, *args)
- rescue => details
+ rescue => details
direction = method.to_s.include?("intern") ? "from" : "to"
error = FormatError.new("Could not #{method} #{direction} #{format}: #{details}")
error.set_backtrace(details.backtrace)
raise error
- end
end
def initialize(format)