From 669a70d0d2fcd334b1c5d920de5369cc3df3558b Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 22 Nov 2020 18:25:05 +0000 Subject: [PATCH] No default append to feed date --- newswire.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newswire.py b/newswire.py index 80c83b18..5ef11b0c 100644 --- a/newswire.py +++ b/newswire.py @@ -243,7 +243,7 @@ def xml2StrToDict(baseDir: str, domain: str, xmlStr: str, publishedDate = parseFeedDate(pubDate) if publishedDate: - pubDateStr = str(publishedDate) + '+00:00' + pubDateStr = str(publishedDate) if not pubDateStr.endswith('+00:00'): pubDateStr += '+00:00' postFilename = ''