소스 검색

Bugfix: must be an Integer not a String

pull/1/head
Adrian Short 6 년 전
부모
커밋
f7d491ab93
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      scraper.rb

+ 1
- 1
scraper.rb 파일 보기

@@ -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


불러오는 중...
취소
저장