diff options
author | Matt Singleton <matt@xcolour.net> | 2017-09-03 14:27:50 -0400 |
---|---|---|
committer | Matt Singleton <matt@xcolour.net> | 2017-09-03 14:27:50 -0400 |
commit | 38a64b344bc6a25ce0faf17ddb7ed3439d0d007d (patch) | |
tree | 2fc04f01649ff38e694d0b7529622381fad7e19d | |
parent | bffb7d40ef0050b7516d745901749c93e65859e4 (diff) |
remove debug print statements
-rwxr-xr-x | unbiased/parser.py | 2 |
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
|