forked from indymedia/epicyon
Remove debug
parent
31b12ae207
commit
61beedd86e
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue