missed some
This commit is contained in:
parent
51dadf421e
commit
32c78201e8
@ -182,13 +182,13 @@ class TunnelBroker(object):
|
||||
try:
|
||||
ipr.addr('add',
|
||||
index = assignment.iface_idx,
|
||||
address = b.str,
|
||||
address = str(b),
|
||||
mask = b.prefixlen,
|
||||
family = socket.AF_INET6)
|
||||
logger.debug('Added {0} with prefix {1} to {2}.'.format(b.str, b.prefixlen, assignment.iface))
|
||||
logger.debug('Added {0} with prefix {1} to {2}.'.format(str(b), b.prefixlen, assignment.iface))
|
||||
except Exception as e:
|
||||
logger.error(('Could not add address block {0} on {1}: '
|
||||
'{2}').format(b.str, assignment.iface, e))
|
||||
'{2}').format(str(b), assignment.iface, e))
|
||||
ipr.close()
|
||||
raise e
|
||||
ipr.close()
|
||||
|
Loading…
Reference in New Issue
Block a user