diff options
author | Kim Alvefur <zash@zash.se> | 2018-03-21 16:31:48 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-03-21 16:31:48 +0100 |
commit | d0d92da7faf7992e6a696201baeb3554080d3468 (patch) | |
tree | 00fa925ca06ba727c748ef259aead81f8dd5524d | |
parent | 877efb623067b107fa9210aef8f7f1b142e4cbe7 (diff) | |
download | prosody-d0d92da7faf7992e6a696201baeb3554080d3468.tar.gz prosody-d0d92da7faf7992e6a696201baeb3554080d3468.zip |
util.startup: Remove unused loop variable [luacheck]
-rw-r--r-- | util/startup.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/startup.lua b/util/startup.lua index a1677375..fbfa772e 100644 --- a/util/startup.lua +++ b/util/startup.lua @@ -475,7 +475,7 @@ function startup.make_dummy_hosts() }; end - for hostname, config in pairs(config.getconfig()) do + for hostname in pairs(config.getconfig()) do hosts[hostname] = make_host(hostname); end end |