Fixed regional committees

This commit is contained in:
Jim Martens 2020-01-09 18:06:44 +01:00
parent d7f576f59b
commit eadd7bfcd0
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ def get_abbreviated_committee_name(name: str) -> str:
abbreviated_name = f"A{abbreviated_name}"
elif start_regional_committee in name:
second_part = name[len(start_committee):]
second_split = second_part.split(sep=",")
second_split = second_part.split(sep="/")
abbreviated_name = f"Ra{get_abbreviation(second_split)}"
return abbreviated_name