message-tags are joined by ";", not ","
This commit is contained in:
parent
2ca4fd48f7
commit
59eeee1030
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||||
|
|
Loading…
Reference in a new issue