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

Proper request arguments.

This commit is contained in:
James Rose 2012-04-27 12:21:39 +01:00
parent 08cf679268
commit e2087a7a57

View file

@ -4,7 +4,7 @@ module Fog
class Real
def get_drives
request("get", "/drives/list", [200])
request(:method => "get", :path => "/drives/list", :expects => 200)
end
end