Browse Source

Resolve missing command issue.

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

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

@@ -63,10 +63,10 @@ class Data(object):
bot's name); self.is_command will be set to True, and self.trigger will 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. 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: try:
self._command = self.args[0].lower()
self._command = self.args.pop(0).lower()
except IndexError: except IndexError:
return return




Loading…
Cancel
Save