remove extra formatted.notice format param
This commit is contained in:
parent
32813b4b4e
commit
c65a422284
1 changed files with 4 additions and 4 deletions
|
@ -43,14 +43,14 @@ class Module(ModuleManager.BaseModule):
|
||||||
self._event("message.channel", event["server"], line,
|
self._event("message.channel", event["server"], line,
|
||||||
event["channel"].name, channel=event["channel"], user=user)
|
event["channel"].name, channel=event["channel"], user=user)
|
||||||
|
|
||||||
def _on_notice(self, event, sender, target):
|
def _on_notice(self, event, sender):
|
||||||
return "(notice) <%s> %s" % (target, sender, event["message"])
|
return "(notice) <%s> %s" % (sender, event["message"])
|
||||||
def _channel_notice(self, event, sender, channel):
|
def _channel_notice(self, event, sender, channel):
|
||||||
line = self._on_notice(event, sender, channel.name)
|
line = self._on_notice(event, sender)
|
||||||
self._event("notice.channel", event["server"], line,
|
self._event("notice.channel", event["server"], line,
|
||||||
event["channel"].name)
|
event["channel"].name)
|
||||||
def _private_notice(self, event, sender, target):
|
def _private_notice(self, event, sender, target):
|
||||||
line = self._on_notice(event, sender, target)
|
line = self._on_notice(event, sender)
|
||||||
self._event("notice.private", event["server"], line, None)
|
self._event("notice.private", event["server"], line, None)
|
||||||
|
|
||||||
@utils.hook("received.notice.channel", priority=EventManager.PRIORITY_HIGH)
|
@utils.hook("received.notice.channel", priority=EventManager.PRIORITY_HIGH)
|
||||||
|
|
Loading…
Reference in a new issue