# HG changeset patch # User Kim Alvefur # Date 1355664984 -3600 # Node ID 6d8ec8c90240746b038a346c99d5e03840f8a39b # Parent 13553f4132a8079063d310964e868fa8ee1b7d54 util.datamanager: Don't escape the name of a store diff -r 13553f4132a8 -r 6d8ec8c90240 util/datamanager.lua --- a/util/datamanager.lua Sun Dec 16 08:34:50 2012 +0100 +++ b/util/datamanager.lua Sun Dec 16 14:36:24 2012 +0100 @@ -281,7 +281,7 @@ function users(host, store, typ) typ = type_map[typ or "keyval"]; - local store_dir = format("%s/%s/%s", data_path, encode(host), encode(store)); + local store_dir = format("%s/%s/%s", data_path, encode(host), store); local mode, err = lfs.attributes(store_dir, "mode"); if not mode then