From b53cd265ae5bd8dcfd6fa4b7fc77efade0480327 Mon Sep 17 00:00:00 2001 From: Joshua Simmons Date: Sun, 18 Jul 2010 21:13:38 +1000 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 e9434df..2b51224 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