copy paste fail, batch end should be "-" not "+"
This commit is contained in:
parent
81ae0cc889
commit
9f946e236d
1 changed files with 1 additions and 1 deletions
|
@ -85,4 +85,4 @@ def batch_start(identifier: str, batch_type: str, tags: dict=None):
|
||||||
tags=tags)
|
tags=tags)
|
||||||
|
|
||||||
def batch_end(identifier: str, tags: dict=None):
|
def batch_end(identifier: str, tags: dict=None):
|
||||||
return utils.irc.IRCParsedLine("BATCH", ["+%s" % identifier], tags=tags)
|
return utils.irc.IRCParsedLine("BATCH", ["-%s" % identifier], tags=tags)
|
||||||
|
|
Loading…
Reference in a new issue