From 2bf184a853d9318d05bfb65edc895ea6542da962 Mon Sep 17 00:00:00 2001 From: Sandro Turriate Date: Fri, 29 Jan 2010 14:25:17 -0500 Subject: [PATCH] Cleanup --- lib/httparty/parser.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/httparty/parser.rb b/lib/httparty/parser.rb index 53131a2..fb5a3a4 100644 --- a/lib/httparty/parser.rb +++ b/lib/httparty/parser.rb @@ -134,8 +134,8 @@ module HTTParty def parse_supported_format send(format) - rescue NoMethodError - raise NotImplementedError, "#{self.class.name} has not implemented a parsing method for the #{format.inspect} format." + rescue NoMethodError + raise NotImplementedError, "#{self.class.name} has not implemented a parsing method for the #{format.inspect} format." end end end