diff --git a/newswire.py b/newswire.py index 1c5c4a613..b9676af8b 100644 --- a/newswire.py +++ b/newswire.py @@ -186,7 +186,6 @@ def parseFeedDate(pubDate: str): hoursAdded = timedelta(hours=5) publishedDate = publishedDate + hoursAdded break - print('Feed date: ' + pubDate + ' ' + str(publishedDate)) return publishedDate @@ -247,7 +246,6 @@ def xml2StrToDict(baseDir: str, domain: str, xmlStr: str, pubDateStr = str(publishedDate) if not pubDateStr.endswith('+00:00'): pubDateStr += '+00:00' - print('Feed date: ' + pubDateStr) postFilename = '' votesStatus = [] addNewswireDictEntry(baseDir, domain, @@ -318,7 +316,6 @@ def atomFeedToDict(baseDir: str, domain: str, xmlStr: str, pubDateStr = str(publishedDate) if not pubDateStr.endswith('+00:00'): pubDateStr += '+00:00' - print('Feed date: ' + pubDateStr) postFilename = '' votesStatus = [] addNewswireDictEntry(baseDir, domain, @@ -386,7 +383,6 @@ def atomFeedYTToDict(baseDir: str, domain: str, xmlStr: str, pubDateStr = str(publishedDate) if not pubDateStr.endswith('+00:00'): pubDateStr += '+00:00' - print('Feed date: ' + pubDateStr) postFilename = '' votesStatus = [] addNewswireDictEntry(baseDir, domain,