summaryrefslogtreecommitdiffstats
path: root/aconf/persistence/defer.lua
diff options
context:
space:
mode:
Diffstat (limited to 'aconf/persistence/defer.lua')
-rw-r--r--aconf/persistence/defer.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/aconf/persistence/defer.lua b/aconf/persistence/defer.lua
index 5db5a21..cfa8e8b 100644
--- a/aconf/persistence/defer.lua
+++ b/aconf/persistence/defer.lua
@@ -28,7 +28,7 @@ function DeferringCommitter:_set_multiple(mods)
self.committed = false
for _, mod in ipairs(mods) do
- local path, value = unpack(mod)
+ local path, value = table.unpack(mod)
while path > '/' do
if self.defer_paths[path] then return end
path = pth.parent(path)