Sfoglia il codice sorgente

Fix NameError

tags/v0.1^2
Ben Kurtovic 12 anni fa
parent
commit
4aa177dfd0
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      earwigbot/irc/data.py

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

@@ -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



Caricamento…
Annulla
Salva