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 8bf6db64..5c4e06a0 100644
--- a/IRCLineHandler.py
+++ b/IRCLineHandler.py
@@ -57,7 +57,7 @@ class LineHandler(object):
for tag in tags_prefix.split(";"):
if tag:
tag_split = tag.split("=", 1)
- tags[tag_split[0]] = tag_split[1:]
+ tags[tag_split[0]] = "".join(tag_split[1:])
if line[0] == ":":
prefix, command, line = line[1:].split(" ", 2)