Changing verify error message

This commit is contained in:
Joshua Simmons 2010-07-18 21:13:38 +10:00
parent 9c5a2c82e7
commit b53cd265ae
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