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

small typo

This commit is contained in:
Nat Welch 2013-10-27 07:58:46 -07:00
parent fc5675dfdb
commit a243b3bbae

View file

@ -13,7 +13,7 @@ module Fog
if filters['zone'].nil?
data = []
service.list_zones.body['items'].each do |zone|
data += service.list_servers(zone['name']).body["items"] || []
data += service.list_disks(zone['name']).body["items"] || []
end
else
data = service.list_disks(filters['zone']).body["items"] || []