fix(scripts): Avoid fails of contributor stats script if cleanup fails
This commit is contained in:
parent
905567ae2e
commit
43b6b7255f
scripts
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue