diff options
| author | 2020-01-30 11:54:24 +0000 | |
|---|---|---|
| committer | 2020-01-30 11:54:24 +0000 | |
| commit | d0c5fc097cfa7284d1cb0589ac96a9350c2f3a07 (patch) | |
| tree | d52a8c9b87066c90104cf2efd2458148e76db40c | |
| parent | make sure we always have a channel when require_mode/access is present (diff) | |
| signature | ||
show target user in !ping response
| -rw-r--r-- | modules/ping.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ping.py b/modules/ping.py index c8ffe612..01e6152a 100644 --- a/modules/ping.py +++ b/modules/ping.py @@ -8,4 +8,4 @@ class Module(ModuleManager.BaseModule): """ :help: Ping pong """ - event["stdout"].write("Pong!") + event["stdout"].write("%s: pong!" % event["user"].nickname) |
