jo 2022-11-19 16:56:34 +01:00 committed by Marge
commit 8f7ab9b3b3
4 changed files with 7 additions and 3 deletions

View file

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