소스 검색

KeyError -> IndexError (please shoot me now)

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

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

@@ -47,7 +47,7 @@ class AFCStatus(BaseCommand):
elif data.args[0].startswith("agg") or data.args[0] == "a":
try:
agg_num = data.args[1]
except KeyError:
except IndexError:
agg_data = (self.count_submissions(), self.count_redirects(), self.count_files())
agg_num = self.get_aggregate_number(agg_data)
aggregate = self.get_aggregate(agg_num)


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