ソースを参照

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)


読み込み中…
キャンセル
保存