diff options
author | Matthew Wild <mwild1@gmail.com> | 2020-06-02 08:02:03 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2020-06-02 08:02:03 +0100 |
commit | 01f780eef118521830a7e377f69f9b70acfc3896 (patch) | |
tree | b38eaa1536a13c67f56d16d0b56e6a511b58a8b3 /util | |
parent | 46022b09886badc89425865ae1ac02651995f8c8 (diff) | |
download | prosody-01f780eef118521830a7e377f69f9b70acfc3896.tar.gz prosody-01f780eef118521830a7e377f69f9b70acfc3896.zip |
util.human.io: Fix variable name [luacheck]
Diffstat (limited to 'util')
-rw-r--r-- | util/human/io.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/human/io.lua b/util/human/io.lua index bfd1c00d..4c84c4a4 100644 --- a/util/human/io.lua +++ b/util/human/io.lua @@ -82,7 +82,7 @@ local function show_prompt(prompt) end local function printf(fmt, ...) - print(msg:format(...)); + print(fmt:format(...)); end return { |