summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-mod-admin-full/luasrc
diff options
context:
space:
mode:
authorYousong Zhou <yszhou4tech@gmail.com>2018-05-07 21:17:42 +0800
committerYousong Zhou <yszhou4tech@gmail.com>2018-05-07 21:19:35 +0800
commitc91ba4babc63fcc94771b608ae497a7a2db32b86 (patch)
treed253888f3504401f8f5824213a7830bd882bfff2 /modules/luci-mod-admin-full/luasrc
parent690ae5c211a5c5481cf180d71fe960c3f04a5e7e (diff)
luci-mod-admin-full: use fs.glob instead nixio.fs.glob
It's how the module was named when "require"d and used by other code in the same function Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
Diffstat (limited to 'modules/luci-mod-admin-full/luasrc')
-rw-r--r--modules/luci-mod-admin-full/luasrc/controller/admin/system.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-mod-admin-full/luasrc/controller/admin/system.lua b/modules/luci-mod-admin-full/luasrc/controller/admin/system.lua
index 85bf3b686..6fcd66f44 100644
--- a/modules/luci-mod-admin-full/luasrc/controller/admin/system.lua
+++ b/modules/luci-mod-admin-full/luasrc/controller/admin/system.lua
@@ -27,7 +27,7 @@ function index()
entry({"admin", "system", "fstab", "swap"}, cbi("admin_system/fstab/swap"), nil).leaf = true
end
- local nodes, number = nixio.fs.glob("/sys/class/leds/*")
+ local nodes, number = fs.glob("/sys/class/leds/*")
if number > 0 then
entry({"admin", "system", "leds"}, cbi("admin_system/leds"), _("<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"), 60)
end