diff options
author | ssstvinc2 <sstvinc2@gmail.com> | 2017-03-27 19:49:29 -0400 |
---|---|---|
committer | ssstvinc2 <sstvinc2@gmail.com> | 2017-03-27 19:49:29 -0400 |
commit | cd86f00a977c5105f398207e52e745046c9d6efe (patch) | |
tree | 4f5e30b33591c4769e42ada070f24e662ae0512a | |
parent | ef0dc339f42c6befd07f0d626c1eaed8ad7ee057 (diff) |
minor fixes
-rwxr-xr-x | parser.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -194,7 +194,7 @@ def buildTheHill(): h1s, h2s, h3s = removeDuplicates(h1s, h2s, h3s)
hil=buildNewsSource2(name, url, h1s, h2s, h3s)
- hil=removeBadStories(hil, ['THE MEMO'], None, ['Matt Schlapp', 'Juan Williams'], None, None)
+ hil=removeBadStories(hil, ['THE MEMO'], None, ['Matt Schlapp', 'Juan Williams', 'Judd Gregg'], None, None)
return hil
@@ -489,7 +489,7 @@ def buildCBS(): h1s, h2s, h3s = removeDuplicates(h1s, h2s, h3s)
cbs=buildNewsSource2(name, url, h1s, h2s, h3s)
- cbs=removeBadStories(cbs, ['60 Minutes'], None, None, None, ['whats-in-the-news-coverart'])
+ cbs=removeBadStories(cbs, ['60 Minutes'], ['60 Minutes'], None, None, ['whats-in-the-news-coverart'])
return cbs
@@ -731,7 +731,7 @@ def buildNPR(): #REMOVE BAD STORIES
badTitleArr=['The Two-Way']
badDescArr=None
- badAuthorArr=None
+ badAuthorArr=['Domenico Montanaro']
badImgArr=None
npr=removeBadStories(npr, badTitleArr, badDescArr, badAuthorArr, badImgArr)
|