Ver código fonte

Resolve missing command issue.

tags/v0.1^2
Ben Kurtovic 12 anos atrás
pai
commit
fd18f468f4
1 arquivos alterados com 2 adições e 2 exclusões
  1. +2
    -2
      earwigbot/irc/data.py

+ 2
- 2
earwigbot/irc/data.py Ver arquivo

@@ -63,10 +63,10 @@ class Data(object):
bot's name); self.is_command will be set to True, and self.trigger will
store the trigger string. Otherwise, is_command will be set to False.
"""
self._args = self.msg.strip().split()[1:]
self._args = self.msg.strip().split()

try:
self._command = self.args[0].lower()
self._command = self.args.pop(0).lower()
except IndexError:
return



Carregando…
Cancelar
Salvar