aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2015-04-03 12:10:30 +0200
committerKim Alvefur <zash@zash.se>2015-04-03 12:10:30 +0200
commitedf2198ebec13e0132e96d63c9a65267b8d8c347 (patch)
tree88d12f1023b4ae74e8284343c58e2b21959f7ef9
parentf6ff5df8691b400fcb502b82a94fadaa589616f4 (diff)
downloadprosody-edf2198ebec13e0132e96d63c9a65267b8d8c347.tar.gz
prosody-edf2198ebec13e0132e96d63c9a65267b8d8c347.zip
util.datamanager: Fix traceback due to %s in log message
-rw-r--r--util/datamanager.lua2
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)