diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/commands/outs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/outs.py b/modules/commands/outs.py index 1ea32df4..41528da3 100644 --- a/modules/commands/outs.py +++ b/modules/commands/outs.py @@ -10,8 +10,8 @@ def _message_factory(command): if not command in ["PRIVMSG", "NOTICE"]: raise ValueError("Unknown command method '%s'" % method) - def _(target, message): - return IRCLine.ParsedLine(command, [target, message]) + def _(target, message, tags): + return IRCLine.ParsedLine(command, [target, message], tags=tags) return _ class Out(object): |
