From 29fab044d0833a8cbdd609b9c33dd673803a95da Mon Sep 17 00:00:00 2001 From: Salvatore Orlando Date: Fri, 10 Jan 2014 05:09:18 -0800 Subject: [PATCH] Remove extra whitespace Remove an extra whitespace in the __str__ routine for the VifPort class Change-Id: Ie4a7d011af1697d2e6f523dfe00244aaa42d5127 --- neutron/agent/linux/ovs_lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neutron/agent/linux/ovs_lib.py b/neutron/agent/linux/ovs_lib.py index b6fcf9270..8dcccfe12 100644 --- a/neutron/agent/linux/ovs_lib.py +++ b/neutron/agent/linux/ovs_lib.py @@ -42,7 +42,7 @@ class VifPort: def __str__(self): return ("iface-id=" + self.vif_id + ", vif_mac=" + self.vif_mac + ", port_name=" + self.port_name + - ", ofport=" + str(self.ofport) + ", bridge_name =" + + ", ofport=" + str(self.ofport) + ", bridge_name=" + self.switch.br_name) -- 2.45.2