diff options
-rw-r--r-- | unbiased/sources/washtimes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unbiased/sources/washtimes.py b/unbiased/sources/washtimes.py index b52effc..0727f8a 100644 --- a/unbiased/sources/washtimes.py +++ b/unbiased/sources/washtimes.py @@ -23,8 +23,8 @@ class TheWashingtonTimes(NewsSource): h2s.append(a.a['href']) h2s = tuple(h2s) - h3s = soup.find('section', class_='more-from desktop-only')\ - .find_all('h2', class_='article-headline') + h3s = soup.find('section', class_='block breaking-news')\ + .find_all('h3', class_='article-headline') h3s = [x.find('a')['href'] for x in h3s] h3s = tuple(h3s) |