Fixing redundant escape in regex

This commit is contained in:
Mikel Lindsaar 2011-01-18 11:47:19 +11:00
parent ad8dc5ab89
commit 3b584aee95
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ module ActionMailer
[ nil, {} ]
else
ctype, *attrs = @content_type.split(/;\s*/)
attrs = Hash[attrs.map { |attr| attr.split(/\=/, 2) }]
attrs = Hash[attrs.map { |attr| attr.split(/=/, 2) }]
[ctype, {"charset" => @charset}.merge!(attrs)]
end
end