adding timezone to fix ECMA5 parsing

This commit is contained in:
Andrew Davidson 2023-10-04 22:52:02 -07:00
parent eebe2524a5
commit 2c97ed940c
Signed by: amd
SSH key fingerprint: SHA256:wVzFOuz2n/yUVVBFkpZQ0AOX6guwdUUzSeKWr8aLUiU
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ def parseXML(xmlfile):
episode['download_url'] = child.attrib['url']
if child.tag == 'pubDate':
date = child.text
episode['date'] = parsedate_to_datetime(date).isoformat()
episode['date'] = parsedate_to_datetime(date).isoformat() + "-08:00"
if child.tag == "title":
episode['title'] = child.text
if child.tag == "description":

File diff suppressed because one or more lines are too long