aboutsummaryrefslogtreecommitdiff
path: root/modules/format_activity.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-11-11 18:02:15 +0000
committerGravatar jesopo2019-11-11 18:02:15 +0000
commitd06efdabed3432901c2440835f28165932b8b5e7 (patch)
treef2d5abbc4ec2eea3e1e75759a2585440b6e9f331 /modules/format_activity.py
parentsupport !duckstats for users other than yourself (diff)
signature
change formatted NOTICEs to be denoted by "-nick-" (PRIVMSG as "<nick>")
Diffstat (limited to 'modules/format_activity.py')
-rw-r--r--modules/format_activity.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/format_activity.py b/modules/format_activity.py
index 46b80e36..980d8e6d 100644
--- a/modules/format_activity.py
+++ b/modules/format_activity.py
@@ -54,7 +54,7 @@ class Module(ModuleManager.BaseModule):
def _on_notice(self, event, nickname):
nickname = self._colorize(nickname)
- return "(notice) <%s> %s" % (nickname, event["message"])
+ return "-%s- %s" % (nickname, event["message"])
def _channel_notice(self, event, nickname, channel):
line = self._on_notice(event, nickname)
self._event("notice.channel", event["server"], line,