.upper() command in IRCParsedLine.format()

This commit is contained in:
jesopo 2019-02-23 16:11:26 +00:00
parent 54218b747f
commit c6699c509e

View file

@ -93,7 +93,7 @@ class IRCParsedLine(object):
if self.prefix:
s += "%s " % self.prefix
s += self.command
s += self.command.upper()
if self.args:
if len(self._args) > 1: