main
Bob Mottram 2021-10-29 20:17:41 +01:00
parent b94aaf6e89
commit 5913bf3466
1 changed files with 1 additions and 2 deletions

View File

@ -224,8 +224,7 @@ def parseFeedDate(pubDate: str) -> str:
continue
try:
publishedDate = \
datetime.strptime(pubDate, dateFormat)
publishedDate = datetime.strptime(pubDate, dateFormat)
except BaseException:
continue