Bot correction markdown and logic mistake in updater #172

Merged
FlorianKellermann merged 20 commits from bot into main 2022-05-10 20:45:53 +00:00
Showing only changes of commit d35f7195f1 - Show all commits

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)