aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--IRCLineHandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/IRCLineHandler.py b/IRCLineHandler.py
index ca54d7f5..1b6014d2 100644
--- a/IRCLineHandler.py
+++ b/IRCLineHandler.py
@@ -291,7 +291,7 @@ def handle_PRIVMSG(data):
server = data.server
nickname, username, hostname = Utils.seperate_hostmask(data.prefix)
user = server.get_user(nickname)
- message = data.args[1]
+ message = "" if len(data.args) < 2 else data.args[1]
message_split = message.split(" ")
target = data.args[0]
action = message.startswith("\01ACTION ") and message.endswith("\01")