luci-base: fix syntax error in luci.model.network
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
parent
182506113d
commit
313e325ab1
1 changed files with 1 additions and 1 deletions
|
@ -508,7 +508,7 @@ function get_interfaces(self)
|
|||
end)
|
||||
|
||||
for iface in utl.kspairs(_interfaces) do
|
||||
if not (seen[iface] or (_iface_ignore(iface) or _iface_virtual(iface) or _wifi_iface(iface)) then
|
||||
if not (seen[iface] or _iface_ignore(iface) or _iface_virtual(iface) or _wifi_iface(iface)) then
|
||||
nfs[iface] = interface(iface)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue