[Trivial fix]Remove unnecessary slash

This is to remove the unncessary slash when the line doesn't
exceed the length of 79, to make the code more readable.

Change-Id: I5e7c8d5fc6d4b3917b6e8e196f9cbcacb8807e6c
This commit is contained in:
zhufl 2019-05-06 17:40:55 +08:00
parent a3a1ce4c10
commit 18dd598696
1 changed files with 1 additions and 2 deletions

View File

@ -389,8 +389,7 @@ class OVSNeutronAgent(l2population_rpc.L2populationRpcCallBackTunnelMixin,
if (net_uuid and net_uuid not in self._local_vlan_hints and
local_vlan != constants.DEAD_VLAN_TAG):
self.available_local_vlans.remove(local_vlan)
self._local_vlan_hints[local_vlan_map['net_uuid']] = \
local_vlan
self._local_vlan_hints[local_vlan_map['net_uuid']] = local_vlan
def _dispose_local_vlan_hints(self):
self.available_local_vlans.update(self._local_vlan_hints.values())