Added error helper function.

This commit is contained in:
Jeremy Fincher 2004-12-15 07:01:50 +00:00
parent cdfdc93e87
commit 6bcae9309e
1 changed files with 3 additions and 0 deletions

View File

@ -759,4 +759,7 @@ def ison(nick, prefix='', msg=None):
prefix = msg.prefix
return IrcMsg(prefix=prefix, command='ISON', args=(nick,), msg=msg)
def error(s, msg=None):
return IrcMsg(command='ERROR', args=(s,), msg=msg)
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78: