aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2019-06-19 10:22:46 +0100
committerGravatar jesopo2019-06-19 10:22:46 +0100
commit43108b96baa109a4c1014dde52b4b2bc7fa3e44a (patch)
tree4e6fad5c9e216befd012cc506c1627fea103c870 /modules
parentUpdate CHANGELOG.md (diff)
signature
show nickname in NO_DUCK non-kick message
Diffstat (limited to 'modules')
-rw-r--r--modules/ducks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ducks.py b/modules/ducks.py
index 1fa4d854..6b2f07d6 100644
--- a/modules/ducks.py
+++ b/modules/ducks.py
@@ -78,7 +78,7 @@ class Module(ModuleManager.BaseModule):
if channel.get_setting("ducks-kick"):
channel.send_kick(user.nickname, NO_DUCK)
else:
- stderr.write(NO_DUCK)
+ stderr.write("%s: %s" % (user.nickname, NO_DUCK))
@utils.hook("received.command.bef", alias_of="befriend")
@utils.hook("received.command.befriend", channel_only=True)