From b5b285a678fe78b80d452cc9eb7565b8bf087b81 Mon Sep 17 00:00:00 2001
From: Peter Melnichenko <mpeterval@gmail.com>
Date: Tue, 5 Jul 2016 15:46:43 +0300
Subject: Fix implicit number-to-string coversion in luarocks.help

---
 src/luarocks/help.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/luarocks/help.lua b/src/luarocks/help.lua
index 28f97702..871e97e9 100644
--- a/src/luarocks/help.lua
+++ b/src/luarocks/help.lua
@@ -65,7 +65,7 @@ function help.command(flags, command)
 	--verbose              Display verbose output of commands executed.
 	--timeout=<seconds>    Timeout on network operations, in seconds.
 	                       0 means no timeout (wait forever).
-	                       Default is ]]..cfg.connection_timeout..[[.]])
+	                       Default is ]]..tostring(cfg.connection_timeout)..[[.]])
       print_section("VARIABLES")
       util.printout([[
 	Variables from the "variables" table of the configuration file
-- 
cgit v1.2.3-55-g6feb