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.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/aconf/persistence/defer.lua b/aconf/persistence/defer.lua
index d7f33d8..fa10805 100644
--- a/aconf/persistence/defer.lua
+++ b/aconf/persistence/defer.lua
@@ -6,7 +6,7 @@ See LICENSE file for license details
local object = require('aconf.object')
local super = object.super
-local address = require('aconf.path.address')
+local pth = require('aconf.path')
local DeferringCommitter = object.class(
@@ -31,7 +31,7 @@ function DeferringCommitter:_set_multiple(mods)
local path, value = table.unpack(mod)
while path > '/' do
if self.defer_paths[path] then return end
- path = address.parent(path)
+ path = pth.parent(path)
end
end