diff options
author | Kim Alvefur <zash@zash.se> | 2015-04-03 12:10:30 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2015-04-03 12:10:30 +0200 |
commit | 265eb868376d7cd9b836da7ed843855f9551d59c (patch) | |
tree | 88d12f1023b4ae74e8284343c58e2b21959f7ef9 /util | |
parent | 1626e0537bc7823f6f3521e9cdfcce4f2ffc017a (diff) | |
download | prosody-265eb868376d7cd9b836da7ed843855f9551d59c.tar.gz prosody-265eb868376d7cd9b836da7ed843855f9551d59c.zip |
util.datamanager: Fix traceback due to %s in log message
Diffstat (limited to 'util')
-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) |