diff options
| author | 2019-06-06 17:20:30 +0100 | |
|---|---|---|
| committer | 2019-06-06 17:20:30 +0100 | |
| commit | 35b97f836aee62a4f4b6d76c894a52d83bc4470a (patch) | |
| tree | f235559b6c36c1fdd2cae7a9b81ff954207e9f57 | |
| parent | Split read/write/process in to 3 different threads (diff) | |
| parent | message-tags are joined by ";", not "," (diff) | |
| signature | ||
Merge branch 'master' into feature/write-thread
| -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: |
