Adding missings () after a method call.
Change-Id: If6ca34b64f952271a7ca04935cf91747bb29cbae Closes-Bug: #1557445
This commit is contained in:
1 changed files with 2 additions and 2 deletions
@@ -205,7 +205,7 @@ class BGPVPNNetAssoc(neutron.NeutronResource):
body = self.props.copy()
body.pop('bgpvpn_id')
bgpvpn_id = self.client_plugin.find_resourceid_by_name_or_id(
bgpvpn_id = self.client_plugin().find_resourceid_by_name_or_id(
'bgpvpn', self.props['bgpvpn_id'])
net_assoc = self.neutron().create_network_association(
@@ -293,7 +293,7 @@ class BGPVPNRouterAssoc(neutron.NeutronResource):
body = self.props.copy()
body.pop('bgpvpn_id')
bgpvpn_id = self.client_plugin.find_resourceid_by_name_or_id(
bgpvpn_id = self.client_plugin().find_resourceid_by_name_or_id(
'bgpvpn', self.props['bgpvpn_id'])
router_assoc = self.neutron().create_router_association(
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.