diff options
-rw-r--r-- | updater-ng/files/turris.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/updater-ng/files/turris.lua b/updater-ng/files/turris.lua index 427d6e7..404c163 100644 --- a/updater-ng/files/turris.lua +++ b/updater-ng/files/turris.lua @@ -33,7 +33,7 @@ if type(pkglists) == "string" then -- if there is single list then uci returns j pkglists = {pkglists} end local lists = {} -for list in pairs(pkglists) do +for _, list in pairs(pkglists) do lists["pkglists/" .. list] = true end |