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

Must use values, so that connection.list_roles gets corrent argument.

This commit is contained in:
Bohuslav Kabrda 2012-07-02 10:56:27 +02:00
parent 9e371377de
commit b5edd9f476

View file

@ -17,7 +17,7 @@ module Fog
def list_roles
Excon::Response.new(
:body => { 'roles' => self.data[:roles] },
:body => { 'roles' => self.data[:roles].values },
:status => 200
)
end