Skip to content

Commit

Permalink
Update scraper.rb
Browse files Browse the repository at this point in the history
  • Loading branch information
iecaff committed May 18, 2015
1 parent c4e29dc commit 70d4de5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions scraper.rb
Expand Up @@ -55,15 +55,15 @@
end
end
con_record = {
:auth => con_area,
:lea => con_ward,
:name => con_name,
:party => con_party,
:email => con_email,
:phone => con_phone,
:mobile => con_mobile,
:auth => con_area.to_s,
:lea => con_ward.to_s,
:name => con_name.to_s,
:party => con_party.to_s,
:email => con_email.to_s,
:phone => con_phone.to_s,
:mobile => con_mobile.to_s,
:image => con_image.to_s,
:address => con_address
:address => con_address.to_s
}


Expand Down

0 comments on commit 70d4de5

Please sign in to comment.