Skip to content

Commit

Permalink
GA remove district from vote names
Browse files Browse the repository at this point in the history
This fixes the naming issue in ga noted in openstates#1397. This fixes openstates#1360.
  • Loading branch information
mshenfield committed Mar 14, 2017
1 parent 5fee61f commit 4366cb1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion openstates/ga/bills.py
Expand Up @@ -190,7 +190,8 @@ def scrape(self, session, chambers):
m = methods[how]
except KeyError:
m = vote.other
m(whom['Name'])
last_name, district = whom['Name'].split(', ')
m(last_name.strip())

bill.add_vote(vote)

Expand Down

0 comments on commit 4366cb1

Please sign in to comment.