diff --git a/recipes/wsj.recipe b/recipes/wsj.recipe index f9c095fe0f..de928489a9 100644 --- a/recipes/wsj.recipe +++ b/recipes/wsj.recipe @@ -154,7 +154,7 @@ class WSJ(JavascriptRecipe): def get_wsj_index(self, browser): # return self.test_wsj_index() ans = {} - root = self.index_to_soup('http://online.wsj.com/itp') + root = self.index_to_soup('http://online.wsj.com/itp/today') for span in CSSSelect('span.date-date')(root): if span.text: self.timefmt = span.text diff --git a/recipes/wsj_free.recipe b/recipes/wsj_free.recipe index 6172e0befb..09c13aa1b4 100644 --- a/recipes/wsj_free.recipe +++ b/recipes/wsj_free.recipe @@ -149,7 +149,7 @@ class WSJ(JavascriptRecipe): def get_wsj_index(self, browser): # return self.test_wsj_index() ans = {} - root = self.index_to_soup('http://online.wsj.com/itp') + root = self.index_to_soup('http://online.wsj.com/itp/today') for span in CSSSelect('span.date-date')(root): if span.text: self.timefmt = span.text