luci-base: fix syntax error in luci.model.network

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
Jo-Philipp Wich 2016-04-26 21:02:51 +02:00
parent 182506113d
commit 313e325ab1

View file

@ -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