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 | 28322869e86df2d2d094acfe83a09d6dc81732c4 (patch) | |
tree | f97c1b0697715769bf2ebbfd448917e05c4c4d38 /plugins | |
parent | 2ab785fd9fc6d669b6bd0c24333dc27af86153af (diff) | |
download | prosody-28322869e86df2d2d094acfe83a09d6dc81732c4.tar.gz prosody-28322869e86df2d2d094acfe83a09d6dc81732c4.zip |
mod_posix: Remove unnecessary import of util.format (thanks luacheck and buildbot)
Diffstat (limited to 'plugins')
-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; |