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

fix variable name typo

This commit is contained in:
joe 2013-12-17 14:57:41 -06:00
parent bb02fb46e3
commit d2a1fc585d

View file

@ -25,7 +25,7 @@ module Fog
raise Fog::Compute::AWS::Error.new("You may specify secondaryPrivateIpAddressCount or specific secondary private IP addresses, but not both.")
end
if private_ip_address = options.delete('PrivateIpAddresses')
if private_ip_addresses = options.delete('PrivateIpAddresses')
options.merge!(Fog::AWS.indexed_param('PrivateIpAddress.%d', [*private_ip_addresses]))
end