import traceback
from urllib.error import URLError
+from urllib.parse import urlparse
from feedparser import parse as feed_parse
date = '{:%Y-%m-%d %H:%M} (utc)'.format(self.th_mon.last_check)
self.reply(rcv, f'Last feeds check: {date}')
return
- html = ['<a href="{0}">{1}</a>'.format(html_escape(u),
- html_escape(u[7:])
- ) for u in Feeds.FEEDS]
+ html = ['<a href="{0}">{1}</a>'.format(
+ html_escape(u),
+ html_escape('{1}{2}'.format(*urlparse(u)))
+ ) for u in Feeds.FEEDS]
msg = {'mbody': 'Feeds:\n' + '\n'.join(Feeds.FEEDS),
'mhtml': 'Feeds:<br />' + '<br />'.join(html)}
self.reply(rcv, msg)