Wrong usage of "an" in the messages:
"Gets called when an port gets added to or removed"
"Create an command to add an OVS bridge"
Should be:
"Gets called when a port gets added to or removed"
"Create a command to add an OVS bridge"
Totally 2 occurrences in Neutron base code.
Change-Id: I40756ed3eff7d2f672b2e0203b59ea5b8ff224c3
def update_port_filter(self, port):
"""Refresh security group rules from data store
- Gets called when an port gets added to or removed from
+ Gets called when a port gets added to or removed from
the security group the port is a member of or if the
group gains or looses a rule.
"""
@abc.abstractmethod
def add_br(self, name, may_exist=True, datapath_type=None):
- """Create an command to add an OVS bridge
+ """Create a command to add an OVS bridge
:param name: The name of the bridge
:type name: string