Skip to content

Commit

Permalink
Fix date and consistency of integers/strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
Duncan Parkes committed May 28, 2015
1 parent 274a183 commit a8c3bfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
region_lis = root.xpath("//li[contains(., 'Members')]")[0].find('ul').findall('li')

legislatures_data = [
{'id': 2012, 'name': '2012-1017', 'start_date': '2012', 'end_date': 2017},
{'id': 2012, 'name': '2012-2017', 'start_date': 2012, 'end_date': 2017},
]

data = []
Expand Down

0 comments on commit a8c3bfb

Please sign in to comment.