IPAddresses Constant dict update

- Updating the PLURALS dictionary update (bug fix)

Change-Id: Iffd95e0afd3c443e82773887118f84ae70671aff
This commit is contained in:
Leonardo Maycotte 2015-06-29 10:47:35 -05:00
parent 8700ab625d
commit 79f33bb924

View File

@ -24,8 +24,8 @@ class IPAddressesResource(NeutronResource):
IP_ADDRESS = 'ip_address'
IP_ADDRESSES = 'ip_addresses'
PLURALS = NeutronResource.PLURALS.update(
{IP_ADDRESS: IP_ADDRESSES})
PLURALS = NeutronResource.PLURALS
PLURALS.update({IP_ADDRESS: IP_ADDRESSES})
class IPAddressesResponseCodes(NeutronResponseCodes):