소스 검색

bugfix!

tags/v0.1^2
Ben Kurtovic 13 년 전
부모
커밋
3fa5d0a178
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. +4
    -2
      bot/frontend.py

+ 4
- 2
bot/frontend.py 파일 보기

@@ -54,7 +54,9 @@ def main():
lines = read_buffer.split("\n")
read_buffer = lines.pop()
for line in lines:
_process_message(line)
ret = _process_message(line)
if ret:
return

def _process_message(line):
"""Process a single message from IRC."""
@@ -89,7 +91,7 @@ def _process_message(line):
if data.msg in ["!restart", ".restart"]:
if data.host in config.irc["permissions"]["owners"]:
print "Restarting bot per owner request..."
return
return True

# If we are pinged, pong back:
elif line[0] == "PING":


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