diff options
author | Matthew Wild <mwild1@gmail.com> | 2019-03-26 14:59:42 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2019-03-26 14:59:42 +0000 |
commit | f7b4b8ed7a50a034299e0e24ac9003757c01d78d (patch) | |
tree | f97c1b0697715769bf2ebbfd448917e05c4c4d38 /plugins/mod_posix.lua | |
parent | 0c7ea2e51a59a69ab23abc505bbcd9b6ba3722bc (diff) | |
download | prosody-f7b4b8ed7a50a034299e0e24ac9003757c01d78d.tar.gz prosody-f7b4b8ed7a50a034299e0e24ac9003757c01d78d.zip |
mod_posix: Remove unnecessary import of util.format (thanks luacheck and buildbot)
Diffstat (limited to 'plugins/mod_posix.lua')
-rw-r--r-- | plugins/mod_posix.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/mod_posix.lua b/plugins/mod_posix.lua index 8367ae9e..a2a60dd0 100644 --- a/plugins/mod_posix.lua +++ b/plugins/mod_posix.lua @@ -20,7 +20,6 @@ if not have_signal then module:log("warn", "Couldn't load signal library, won't respond to SIGTERM"); end -local format = require "util.format".format; local lfs = require "lfs"; local stat = lfs.attributes; |