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

Fix warning (was emitting two lines)

Ticket:
Reviewed By: trivial
Testing Done:
This commit is contained in:
Roopa Prabhu
2015-07-01 15:01:15 -07:00
parent 547084c312
commit d005639cac

View File

@@ -197,7 +197,7 @@ class moduleBase(object):
else:
# Could not match anything.
self.logger.warn('Warning: could not glob properly with %s\n%s' % (expr,errmsg))
self.logger.warn('%s' %(errmsg))
yield expr
def parse_port_list(self, port_expr, ifacenames=None):