diff options
| author | 2019-02-23 16:11:26 +0000 | |
|---|---|---|
| committer | 2019-02-23 16:11:26 +0000 | |
| commit | c6699c509e0eefb70179c06400231bdb39b2cf60 (patch) | |
| tree | 90d9f93cc04f1018977cb8b50476a7e5f2a45f1f /src/utils/irc | |
| parent | Only allow the last arg of a formatted line to be :trailing (diff) | |
| signature | ||
.upper() command in IRCParsedLine.format()
Diffstat (limited to 'src/utils/irc')
| -rw-r--r-- | src/utils/irc/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/irc/__init__.py b/src/utils/irc/__init__.py index 10924c0d..f39d476a 100644 --- a/src/utils/irc/__init__.py +++ b/src/utils/irc/__init__.py @@ -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: |
