aboutsummaryrefslogtreecommitdiff
path: root/src/IRCLine.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-06-06 17:19:27 +0100
committerGravatar jesopo2019-06-06 17:19:27 +0100
commit59eeee103033f75625cdabf1c10b8a8612761b54 (patch)
tree92196d26e95e1498410a4b023818ee84853797b2 /src/IRCLine.py
parentMake `params` arg for logging functions optional (diff)
signature
message-tags are joined by ";", not ","
Diffstat (limited to 'src/IRCLine.py')
-rw-r--r--src/IRCLine.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/IRCLine.py b/src/IRCLine.py
index 6bd50e75..e22a79ad 100644
--- a/src/IRCLine.py
+++ b/src/IRCLine.py
@@ -62,7 +62,7 @@ class ParsedLine(object):
tag_pieces.append(tag)
if tag_pieces:
- return "@%s" % ",".join(tag_pieces)
+ return "@%s" % ";".join(tag_pieces)
return ""
def format(self) -> str: