diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-05-06 19:21:29 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-05-06 19:21:29 +0100 |
commit | a540d613cd08b8feee096d19b727d1f5b2cab507 (patch) | |
tree | ac1899833b30b87ea97439f061e9b892bd188367 /util/datamanager.lua | |
parent | 8b320cb39f3d22c7af46d33ddfc017a726db30d0 (diff) | |
parent | 80bafb72003774e5eb63ef9d3d7960385cfb8c6a (diff) | |
download | prosody-a540d613cd08b8feee096d19b727d1f5b2cab507.tar.gz prosody-a540d613cd08b8feee096d19b727d1f5b2cab507.zip |
Merge
Diffstat (limited to 'util/datamanager.lua')
-rw-r--r-- | util/datamanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/datamanager.lua b/util/datamanager.lua index b82349f1..b4138638 100644 --- a/util/datamanager.lua +++ b/util/datamanager.lua @@ -293,7 +293,7 @@ function users(host, store, typ) local mode, err = lfs.attributes(store_dir, "mode"); if not mode then - return function() log("debug", err or (store_dir .. " does not exist")) end + return function() log("debug", "%s", err or (store_dir .. " does not exist")) end end local next, state = lfs.dir(store_dir); return function(state) |