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

[terremark] fix typo in get_internet_services parser

This commit is contained in:
geemus 2010-05-06 08:30:07 -07:00
parent d64526c841
commit db2d74ebda

View file

@ -14,7 +14,7 @@ module Fog
def start_element(name, attributes)
super
case name
when 'PublicIPAddress'
when 'PublicIpAddress'
@in_public_ip_address = true
end
end
@ -48,7 +48,7 @@ module Fog
@internet_service = {}
when 'Port', 'Timeout'
@internet_service[name] = @value.to_i
when 'PublicIPAddress'
when 'PublicIpAddress'
@in_public_ip_address = false
end
end