tag_split, not tag
This commit is contained in:
parent
4368c69035
commit
36904af986
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue