Changing verify error message

This commit is contained in:
Joshua Simmons 2010-07-18 19:13:38 +08:00 committed by JakobOvrum
parent f07a3cec22
commit 30253c5a2a
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ end
local function verify(str, errLevel)
if str:find("^:") or find("%s%z") then
error(("bad characters in '%s'"):format(str), errLevel)
error(("malformed parameter '%s' to irc command"):format(str), errLevel)
end
return str