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

Merge branch 'master' of github.com:fog/fog

This commit is contained in:
Mike Hagedorn 2014-06-24 11:22:55 -05:00
commit 0cf4a25de7
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@ module Fog
request(
:expects => [200, 203],
:method => 'GET',
:path => "flavors/#{flavor_id}"
:path => "flavors/#{Fog::Rackspace.escape(flavor_id)}"
)
end
end

View file

@ -27,7 +27,7 @@ module Fog
request(
:expects => [200, 203],
:method => 'GET',
:path => "images/#{image_id}"
:path => "images/#{Fog::Rackspace.escape(image_id)}"
)
end
end