Quellcode durchsuchen

KeyError -> IndexError (please shoot me now)

tags/v0.1
Ben Kurtovic vor 13 Jahren
Ursprung
Commit
1568b31846
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      irc/commands/afc_status.py

+ 1
- 1
irc/commands/afc_status.py Datei anzeigen

@@ -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)


Laden…
Abbrechen
Speichern