Skip to content

Commit

Permalink
converted non-breaking space to white space
Browse files Browse the repository at this point in the history
  • Loading branch information
LoveMyData committed Jun 7, 2017
1 parent 856e330 commit 9ba80c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scraper.rb
Expand Up @@ -17,7 +17,7 @@

record = {
"council_reference" => detail_page.search('h3:contains("Planning Application Reference:") span').inner_text.strip.to_s,
"address" => detail_page.search('h3:contains("Map:") span').inner_text.strip.to_s + "VIC",
"address" => detail_page.search('h3:contains("Map:") span').inner_text.gsub("\u00A0", " ").strip.to_s + " VIC",
"description" => detail_page.search('h3:contains("Description:") span').inner_text.strip.to_s,
"info_url" => application.attributes['href'].to_s,
"communt_url" => comment_url,
Expand Down

0 comments on commit 9ba80c8

Please sign in to comment.