fix representation date in FeedItem
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
mitsuha_s 2022-07-10 16:10:52 +00:00
parent 468da6b5ee
commit f101f825a3
2 changed files with 4 additions and 3 deletions

4
rss.py
View File

@ -1,5 +1,5 @@
from logging import Logger
from time import strftime
from feedparser import FeedParserDict, parse
@ -9,7 +9,7 @@ class FeedItem:
self.title = item.get('title', '')
self.description = item.get('summary', '')
if 'published' in item:
self.date = item.published_parsed
self.date = strftime("%d.%m.%Y %H:%M", item.published_parsed)
else:
self.date = None

View File

@ -165,7 +165,8 @@ class Notifier:
def __format_message(self, item: FeedItem) -> str:
return (
# TODO: Return date when FeedItem starts to return formattable datetime object
f"<strong><a href=\"{item.url}\">{item.title}</a></strong>\n\n"
f"<strong><a href=\"{item.url}\">{item.title}</a></strong>\n"
f"{item.date}\n\n"
f"{self.__sanitize_html(item.description)}"
)