소스 검색

Be smarter about figuring out when someone is talking to us.

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

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

@@ -84,7 +84,7 @@ class Data(object):
self._is_command = True
self._trigger = self.command[0]
self._command = self.command[1:] # Strip the "!" or "."
elif self.command.startswith(self.my_nick):
elif re.match(r"{0}\W*?$".format(self.my_nick), self.command, re.U):
# e.g. "EarwigBot, command arg1 arg2"
self._is_command = True
self._trigger = self.my_nick


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