diff --git a/scripts/get-contributions-stats.py b/scripts/get-contributions-stats.py index 4f6324645..7d65badd7 100755 --- a/scripts/get-contributions-stats.py +++ b/scripts/get-contributions-stats.py @@ -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