Explorar el Código

Bugfix: must be an Integer not a String

pull/1/head
Adrian Short hace 6 años
padre
commit
f7d491ab93
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      scraper.rb

+ 1
- 1
scraper.rb Ver fichero

@@ -6,7 +6,7 @@ auths = UKPlanningScraper::Authority.tagged('london')
auths.each_with_index do |auth, i|
begin
puts "#{i + 1} of #{auths.size}: Scraping #{auth.name}"
apps = auth.scrape({ decided_days: ENV['MORPH_DAYS'] })
apps = auth.scrape({ decided_days: ENV['MORPH_DAYS'].to_i })
ScraperWiki.save_sqlite([:authority_name, :council_reference], apps)
puts "#{auth.name}: #{apps.size} application(s) saved."
rescue UKPlanningScraper::SystemNotSupportedError => e


Cargando…
Cancelar
Guardar