From 30253c5a2a931f54403aebfb8ca26800f471010b Mon Sep 17 00:00:00 2001 From: Joshua Simmons Date: Sun, 18 Jul 2010 19:13:38 +0800 Subject: [PATCH] Changing verify error message --- asyncoperations.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asyncoperations.lua b/asyncoperations.lua index dfcde18..a9cb87b 100644 --- a/asyncoperations.lua +++ b/asyncoperations.lua @@ -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