Ver código fonte

Fix NameError

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

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

@@ -66,7 +66,7 @@ class Data(object):
self._args = self.msg.strip().split()[1:]

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



Carregando…
Cancelar
Salvar