diff options
| author | Peter Melnichenko <mpeterval@gmail.com> | 2016-07-05 15:46:43 +0300 |
|---|---|---|
| committer | Peter Melnichenko <mpeterval@gmail.com> | 2016-07-05 15:46:43 +0300 |
| commit | b5b285a678fe78b80d452cc9eb7565b8bf087b81 (patch) | |
| tree | a20285394b4e8f22887ff21016167e38e9a8843f /src | |
| parent | 5f069526966ae37319ba745644a43e0cf64ad62c (diff) | |
| download | luarocks-b5b285a678fe78b80d452cc9eb7565b8bf087b81.tar.gz luarocks-b5b285a678fe78b80d452cc9eb7565b8bf087b81.tar.bz2 luarocks-b5b285a678fe78b80d452cc9eb7565b8bf087b81.zip | |
Fix implicit number-to-string coversion in luarocks.help
Diffstat (limited to 'src')
| -rw-r--r-- | src/luarocks/help.lua | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
| 65 | --verbose Display verbose output of commands executed. | 65 | --verbose Display verbose output of commands executed. |
| 66 | --timeout=<seconds> Timeout on network operations, in seconds. | 66 | --timeout=<seconds> Timeout on network operations, in seconds. |
| 67 | 0 means no timeout (wait forever). | 67 | 0 means no timeout (wait forever). |
| 68 | Default is ]]..cfg.connection_timeout..[[.]]) | 68 | Default is ]]..tostring(cfg.connection_timeout)..[[.]]) |
| 69 | print_section("VARIABLES") | 69 | print_section("VARIABLES") |
| 70 | util.printout([[ | 70 | util.printout([[ |
| 71 | Variables from the "variables" table of the configuration file | 71 | Variables from the "variables" table of the configuration file |
