Fix co-operative inheritance for ec2 model (#1383)

This commit is contained in:
Chris Tomlinson 2017-12-08 21:00:34 +00:00 committed by Terry Cain
parent d2eea02774
commit 499857e67f

View File

@ -3722,6 +3722,7 @@ class NatGateway(object):
class NatGatewayBackend(object):
def __init__(self):
self.nat_gateways = {}
super(NatGatewayBackend, self).__init__()
def get_all_nat_gateways(self, filters):
return self.nat_gateways.values()