commit
0d3460e2ec
1 changed files with 1 additions and 1 deletions
|
@ -664,7 +664,7 @@ class RadvdService(UtilService):
|
||||||
for ifc in node.netifs():
|
for ifc in node.netifs():
|
||||||
if hasattr(ifc, "control") and ifc.control is True:
|
if hasattr(ifc, "control") and ifc.control is True:
|
||||||
continue
|
continue
|
||||||
prefixes = map(cls.subnetentry, ifc.addrlist)
|
prefixes = list(map(cls.subnetentry, ifc.addrlist))
|
||||||
if len(prefixes) < 1:
|
if len(prefixes) < 1:
|
||||||
continue
|
continue
|
||||||
cfg += (
|
cfg += (
|
||||||
|
|
Loading…
Reference in a new issue