From: Salvatore Orlando Date: Fri, 10 Jan 2014 13:09:18 +0000 (-0800) Subject: Remove extra whitespace X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=29fab044d0833a8cbdd609b9c33dd673803a95da;p=openstack-build%2Fneutron-build.git Remove extra whitespace Remove an extra whitespace in the __str__ routine for the VifPort class Change-Id: Ie4a7d011af1697d2e6f523dfe00244aaa42d5127 --- 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)