소스 검색

don't give a status report to ourselves when we join the AFC channel

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

+ 5
- 2
irc/commands/afc_status.py 파일 보기

@@ -1,11 +1,13 @@
# -*- coding: utf-8 -*-

# Report the status of AFC submissions, either as an automatic message on join or a request via !status.
"""Report the status of AFC submissions, either as an automatic message on join
or a request via !status."""

import json
import re
import urllib

from core import config
from irc.classes import BaseCommand

class AFCStatus(BaseCommand):
@@ -20,7 +22,8 @@ class AFCStatus(BaseCommand):
return True
try:
if data.line[1] == "JOIN" and data.chan == "#wikipedia-en-afc":
return True
if data.nick != config.irc["frontend"]["nick"]:
return True
except IndexError:
pass
return False


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