Skip to content

Commit

Permalink
Fixed the usage of member variable
Browse files Browse the repository at this point in the history
Change-Id: Id578cc6374f2be97ea67635adbdcf8f33a4d5e74
Closes-Bug: 1565153
  • Loading branch information
Sachin Bansal committed Apr 25, 2016
1 parent 58e5c28 commit e877722
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/schema-transformer/config_db.py
Expand Up @@ -2976,7 +2976,7 @@ def __init__(self, name, obj=None):
def set_bgpaas_clients(self):
for bgp_router in self.bgp_routers:
bgpr = BgpRouterST.get(bgp_router)
for vmi in self.virtual_machine_interfaces():
for vmi in self.virtual_machine_interfaces:
if vmi.split(':')[-1] == bgpr.obj.name:
self.bgpaas_clients[vmi] = bgpr.obj.get_fq_name_str()
break
Expand Down

0 comments on commit e877722

Please sign in to comment.