diff options
| author | 2019-01-17 14:51:44 +0000 | |
|---|---|---|
| committer | 2019-01-17 14:51:44 +0000 | |
| commit | 776f2facedf7206f9a1646cf575976598c73a77e (patch) | |
| tree | 2f505e99f87cf8ef93407ff66e0c7f4e56ef20e8 | |
| parent | `ping` events don't need to know `full_name` of repo (github.py) (diff) | |
| signature | ||
Actually use new `sender` arg for _on_notice() (print_activity.py)
| -rw-r--r-- | modules/print_activity.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/print_activity.py b/modules/print_activity.py index bf1abbe2..c0618dd5 100644 --- a/modules/print_activity.py +++ b/modules/print_activity.py @@ -41,7 +41,7 @@ class Module(ModuleManager.BaseModule): def _on_notice(self, event, sender, target): self.print_line(event, "(notice->%s) <%s> %s" % ( - target, event["user"].nickname, event["message"])) + target, sender, event["message"])) @utils.hook("received.notice.channel", priority=EventManager.PRIORITY_HIGH) def channel_notice(self, event): |
