Skip to content

Commit

Permalink
Merge pull request #409 from cowmoo/yahoo_finance_oquote
Browse files Browse the repository at this point in the history
Fix the crawling of Yahoo Finance option page to reflect a layout change...
  • Loading branch information
pjdonnelly committed Dec 17, 2013
2 parents 83984b0 + 57e3980 commit 51a2443
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yahoo/finance/oquote/yahoo.finance.oquote.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ if (summary.hasComplexContent()) {
quote.appendChild(<prevClose>{quoteList.tr[0].td.p.text()}</prevClose>);
quote.appendChild(<open>{quoteList.tr[1].td.p.text()}</open>);
quote.appendChild(<bid>{quoteList.tr[2].td.p.text()}</bid>);
quote.appendChild(<ask>{quoteList.tr[3].td.p.text()}</ask>);
quote.appendChild(<bid>{quoteList.tr[2].td.span.text()}</bid>);
quote.appendChild(<ask>{quoteList.tr[3].td.span.text()}</ask>);
quote.appendChild(<strike>{quoteList.tr[4].td.p.text()}</strike>);
quote.appendChild(<expire>{quoteList.tr[5].td.p.text()}</expire>);
// quote.appendChild(<daysRange>{quoteList.tr[6].td.p.text()}</daysRange>);
Expand Down

0 comments on commit 51a2443

Please sign in to comment.