Changeset

8639:070a77c15f63

util.startup: Remove unused loop variable [luacheck]
author Kim Alvefur <zash@zash.se>
date Wed, 21 Mar 2018 16:31:48 +0100
parents 8638:f8f45bbbd8ba
children 8640:8f13ec2ceb06
files util/startup.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/util/startup.lua	Wed Mar 21 16:30:24 2018 +0100
+++ b/util/startup.lua	Wed Mar 21 16:31:48 2018 +0100
@@ -475,7 +475,7 @@
 		};
 	end
 
-	for hostname, config in pairs(config.getconfig()) do
+	for hostname in pairs(config.getconfig()) do
 		hosts[hostname] = make_host(hostname);
 	end
 end