Remove extra whitespace

Remove an extra whitespace in the __str__ routine for the
VifPort class

Change-Id: Ie4a7d011af1697d2e6f523dfe00244aaa42d5127
This commit is contained in:
Salvatore Orlando 2014-01-10 05:09:18 -08:00
parent 84e8eb06b5
commit b474a30e09

View File

@ -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)