Markdown problems and share update done

This commit is contained in:
Florian Kellermann 2022-05-10 17:13:10 +02:00
parent 7eaddabadc
commit d35f7195f1

View File

@ -280,7 +280,7 @@ def send_share_update(message):
bot.register_next_step_handler(message, send_share_price) bot.register_next_step_handler(message, send_share_price)
def send_share_price(message): def send_share_price(message):
str_share_price = share_fetcher.get_share_information(str(message.text)) str_share_price = share_fetcher.get_share_information_simple(str(message.text))
bot.reply_to(message, str_share_price) bot.reply_to(message, str_share_price)