1
0
mirror of https://github.com/CumulusNetworks/ifupdown2.git synced 2024-05-06 15:54:50 +00:00

Fixing errors and typos

Ticket: None
Reviewed By: Roopa
Testing Done:

Signed-off-by: Julien Fortin <julien@cumulusnetworks.com>
This commit is contained in:
Julien Fortin
2016-05-12 16:00:41 +02:00
parent 6263596cd8
commit afe5125163
5 changed files with 10 additions and 12 deletions

View File

@@ -1315,8 +1315,8 @@ class bridge(moduleBase):
running_bridge_port_vids = ''
portlist = self.parse_port_list(ifaceobj.name, attrval)
if not portlist:
self.log_warn('%s: could not parse \'%s %s\''
%(ifaceobj.name, attrname, attrval))
self.log_warn('%s: could not parse \'bridge-port-vids %s\''
%(ifaceobj.name, attrval))
return
err = 0
for p in portlist:
@@ -1347,8 +1347,8 @@ class bridge(moduleBase):
if attrval:
portlist = self.parse_port_list(ifaceobj.name, attrval)
if not portlist:
self.log_warn('%s: could not parse \'%s %s\''
%(ifaceobj.name, attrname, attrval))
self.log_warn('%s: could not parse \'bridge-port-pvids %s\''
%(ifaceobj.name, attrval))
return
running_bridge_port_pvids = ''
err = 0