diff options
author | Jenkins <jenkins@review.openstack.org> | 2015-09-24 19:05:36 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2015-09-24 19:05:36 +0000 |
commit | 32b2a365f391d44247b94d6b7a4bda39d597340a (patch) | |
tree | cfe444aad4601d64dd78ee6e0758988e20f3b74a /os_net_config/impl_ifcfg.py | |
parent | 64123ba0e7ddda112b646bfa5e48f15402921350 (diff) | |
parent | 5e48946bcc863bb8a5f19f1c96f11355ba84e96c (diff) |
Merge "os-net-config: ensure ifup is called just once"
Diffstat (limited to 'os_net_config/impl_ifcfg.py')
-rw-r--r-- | os_net_config/impl_ifcfg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os_net_config/impl_ifcfg.py b/os_net_config/impl_ifcfg.py index 99273bc..4cacbf8 100644 --- a/os_net_config/impl_ifcfg.py +++ b/os_net_config/impl_ifcfg.py @@ -62,7 +62,7 @@ class IfcfgNetConfig(os_net_config.NetConfig): children.add(member) children.update(self.child_members(member)) except KeyError: - children.add(name) + pass return children def _add_common(self, base_opt): |