소스 검색

Resolve missing command issue.

tags/v0.1^2
Ben Kurtovic 12 년 전
부모
커밋
fd18f468f4
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      earwigbot/irc/data.py

+ 2
- 2
earwigbot/irc/data.py 파일 보기

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



불러오는 중...
취소
저장