diff options
| author | 2019-06-06 17:19:27 +0100 | |
|---|---|---|
| committer | 2019-06-06 17:19:27 +0100 | |
| commit | 59eeee103033f75625cdabf1c10b8a8612761b54 (patch) | |
| tree | 92196d26e95e1498410a4b023818ee84853797b2 /src/IRCLine.py | |
| parent | Make `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.py | 2 |
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: |
