fix(scripts): Avoid fails of contributor stats script if cleanup fails

This commit is contained in:
Georg Krause 2023-06-01 18:38:26 +02:00
parent 905567ae2e
commit 43b6b7255f
1 changed files with 2 additions and 2 deletions

View File

@ -70,11 +70,11 @@ def clear_list(inList):
outList = list(dict.fromkeys(inList))
try:
outList.remove("funkwhale-bot")
except IndexError:
except (IndexError, ValueError):
pass
try:
outList.remove("weblate (bot)")
except IndexError:
except (IndexError, ValueError):
pass
outList.sort()
return outList