diff options
| author | 2018-09-13 10:25:33 +0100 | |
|---|---|---|
| committer | 2018-09-13 10:25:33 +0100 | |
| commit | 36fe1fa0d590ddd024e344585711934e4c389c50 (patch) | |
| tree | 412d745eb05c0c38cbdc10999c2e1e2ed5976cb1 /IRCLineHandler.py | |
| parent | join.py -> bot_channel.py, make the bot channel (default #bitbot) configurable (diff) | |
| signature | ||
Specific "n%" for WHOX as to only return nicks.
Diffstat (limited to 'IRCLineHandler.py')
| -rw-r--r-- | IRCLineHandler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IRCLineHandler.py b/IRCLineHandler.py index 944d19b1..d452264d 100644 --- a/IRCLineHandler.py +++ b/IRCLineHandler.py @@ -214,7 +214,7 @@ class LineHandler(object): # on-join user list has finished def handle_366(self, event): - event["server"].send_whox(event["args"][1], "ahnrtu", "111") + event["server"].send_whox(event["args"][1], "n", "ahnrtu", "111") # on user joining channel def join(self, event): |
