copy paste fail, batch end should be "-" not "+"

This commit is contained in:
jesopo 2019-02-19 08:25:25 +00:00
parent 81ae0cc889
commit 9f946e236d

View file

@ -85,4 +85,4 @@ def batch_start(identifier: str, batch_type: str, tags: dict=None):
tags=tags)
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)