aboutsummaryrefslogtreecommitdiff
path: root/IRCLineHandler.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-09-13 10:25:33 +0100
committerGravatar jesopo2018-09-13 10:25:33 +0100
commit36fe1fa0d590ddd024e344585711934e4c389c50 (patch)
tree412d745eb05c0c38cbdc10999c2e1e2ed5976cb1 /IRCLineHandler.py
parentjoin.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.py2
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):