tag_split, not tag

This commit is contained in:
jesopo 2018-09-03 12:45:27 +01:00
parent 4368c69035
commit 36904af986

View file

@ -57,7 +57,7 @@ class LineHandler(object):
for tag in tags_prefix.split(";"): for tag in tags_prefix.split(";"):
if tag: if tag:
tag_split = tag.split("=", 1) tag_split = tag.split("=", 1)
tags[tag[0]] = tag[1:] tags[tag_split[0]] = tag_split[1:]
if line[0] == ":": if line[0] == ":":
prefix, command, line = line[1:].split(" ", 2) prefix, command, line = line[1:].split(" ", 2)