[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:
parent
a3a1ce4c10
commit
18dd598696
@ -389,8 +389,7 @@ class OVSNeutronAgent(l2population_rpc.L2populationRpcCallBackTunnelMixin,
|
|||||||
if (net_uuid and net_uuid not in self._local_vlan_hints and
|
if (net_uuid and net_uuid not in self._local_vlan_hints and
|
||||||
local_vlan != constants.DEAD_VLAN_TAG):
|
local_vlan != constants.DEAD_VLAN_TAG):
|
||||||
self.available_local_vlans.remove(local_vlan)
|
self.available_local_vlans.remove(local_vlan)
|
||||||
self._local_vlan_hints[local_vlan_map['net_uuid']] = \
|
self._local_vlan_hints[local_vlan_map['net_uuid']] = local_vlan
|
||||||
local_vlan
|
|
||||||
|
|
||||||
def _dispose_local_vlan_hints(self):
|
def _dispose_local_vlan_hints(self):
|
||||||
self.available_local_vlans.update(self._local_vlan_hints.values())
|
self.available_local_vlans.update(self._local_vlan_hints.values())
|
||||||
|
Loading…
Reference in New Issue
Block a user