From 18dd598696026aa39e0d7accecb777d6a73fe0fa Mon Sep 17 00:00:00 2001 From: zhufl Date: Mon, 6 May 2019 17:40:55 +0800 Subject: [PATCH] [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 --- .../plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/neutron/plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py b/neutron/plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py index 122aa9c0d3b..affca3d0ef8 100644 --- a/neutron/plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py +++ b/neutron/plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py @@ -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())