message-tags are joined by ";", not ","

This commit is contained in:
jesopo 2019-06-06 17:19:27 +01:00
parent 2ca4fd48f7
commit 59eeee1030

View file

@ -62,7 +62,7 @@ class ParsedLine(object):
tag_pieces.append(tag) tag_pieces.append(tag)
if tag_pieces: if tag_pieces:
return "@%s" % ",".join(tag_pieces) return "@%s" % ";".join(tag_pieces)
return "" return ""
def format(self) -> str: def format(self) -> str: