Browse Source

Bugfix.

tags/v0.2
Ben Kurtovic 8 years ago
parent
commit
9c526e219f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      earwigbot/irc/data.py

+ 1
- 1
earwigbot/irc/data.py View File

@@ -108,7 +108,7 @@ class Data(object):
# e.g. "!command>user arg1 arg2"
if ">" in self.command:
command_uc, self._reply_nick = command_uc.split(">", 1)
self._command = command_uc
self._command = command_uc.lower()

# e.g. "!command >user arg1 arg2"
if self.args and self.args[0].startswith(">"):


Loading…
Cancel
Save