summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorssstvinc2 <sstvinc2@gmail.com>2017-03-27 19:49:29 -0400
committerssstvinc2 <sstvinc2@gmail.com>2017-03-27 19:49:29 -0400
commitcd86f00a977c5105f398207e52e745046c9d6efe (patch)
tree4f5e30b33591c4769e42ada070f24e662ae0512a
parentef0dc339f42c6befd07f0d626c1eaed8ad7ee057 (diff)
minor fixes
-rwxr-xr-xparser.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/parser.py b/parser.py
index cf56d13..93642d8 100755
--- a/parser.py
+++ b/parser.py
@@ -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)