summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Singleton <matt@xcolour.net>2017-09-03 14:27:50 -0400
committerMatt Singleton <matt@xcolour.net>2017-09-03 14:27:50 -0400
commit38a64b344bc6a25ce0faf17ddb7ed3439d0d007d (patch)
tree2fc04f01649ff38e694d0b7529622381fad7e19d
parentbffb7d40ef0050b7516d745901749c93e65859e4 (diff)
remove debug print statements
-rwxr-xr-xunbiased/parser.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/unbiased/parser.py b/unbiased/parser.py
index e3344f4..399e0f2 100755
--- a/unbiased/parser.py
+++ b/unbiased/parser.py
@@ -132,9 +132,7 @@ def removeBadStoriesHelper(source, element, badStringList, article_tiers):
if badStringList is None:
return
for tier, articles in enumerate(article_tiers):
- print(tier, articles)
for idx, article in enumerate(articles):
- print(article)
if article is None:
logger.debug("None type found in removeBadStoriesHelper for {}".format(source.name))
break