fix html code
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing

This commit is contained in:
mitsuha_s 2022-07-08 20:16:33 +00:00
parent 4f25c2dd3f
commit d25ca99da1

View file

@ -59,7 +59,7 @@ class CommandProcessor:
feed_list = '' feed_list = ''
for index, feed in enumerate(feeds, start=1): for index, feed in enumerate(feeds, start=1):
feed_list += '* ' + str(index) + ': ' + f"<a href={feed['url']}>{feed['title']}</a" + '\n' feed_list += '* ' + str(index) + ': ' + f'''<a href="{feed['url']}">{feed['title']}</a''' + '\n'
self.bot.reply_to(message, 'Your feeds:\n' + feed_list) self.bot.reply_to(message, 'Your feeds:\n' + feed_list)