# HG changeset patch
# User Anton Shestakov <av6@dwimlabs.net>
# Date 1468043577 -28800
# Node ID 8c5320a4bfaf9bcf47dbe9bf781e0476f92b7c28
# Parent  88a92ba697bf9e6bee3ac0956a3bb5bbac87a118
prosodyctl: remove unused one-letter loop variable [luacheck]

diff -r 88a92ba697bf -r 8c5320a4bfaf prosodyctl
--- a/prosodyctl	Sat Jul 09 13:52:04 2016 +0800
+++ b/prosodyctl	Sat Jul 09 13:52:57 2016 +0800
@@ -717,7 +717,7 @@
 		else
 			show_message("Please provide details to include in the certificate config file.");
 			show_message("Leave the field empty to use the default value or '.' to exclude the field.")
-			for i, k in ipairs(openssl._DN_order) do
+			for _, k in ipairs(openssl._DN_order) do
 				local v = conf.distinguished_name[k];
 				if v then
 					local nv;