1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Fix 1.8.7 bug - trailing comma in arg list

This commit is contained in:
Mike Pountney 2014-06-09 08:03:54 +01:00
parent e08b181081
commit 68ea6b41ce
2 changed files with 2 additions and 2 deletions

View file

@ -46,7 +46,7 @@ module Fog
Excon::Response.new(
:status => 200,
:headers => {'Content-Type' => "#{type};version=#{api_version}"},
:body => body,
:body => body
)
end

View file

@ -45,7 +45,7 @@ module Fog
Excon::Response.new(
:status => 200,
:headers => {'Content-Type' => "#{type};version=#{api_version}"},
:body => body,
:body => body
)
end