Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update scraper.js
  • Loading branch information
paesku committed Jun 22, 2015
1 parent 837a66b commit ae623ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scraper.js
Expand Up @@ -52,7 +52,7 @@ function run(db) {
// Use cheerio to find things in the page with css selectors.
var $ = cheerio.load(body);

var elements = $("a.link_intern name").each(function () {
var elements = $("a.link_intern.name").each(function () {
var value = $(this).text().trim();
updateRow(db, value);
});
Expand Down

0 comments on commit ae623ec

Please sign in to comment.