From f54850963c02e54418c23d221e3a860ab213049d Mon Sep 17 00:00:00 2001 From: Linus E <75929322+Rripped@users.noreply.github.com> Date: Thu, 12 May 2022 09:39:57 +0200 Subject: [PATCH] small comment fix --- telegram_bot/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telegram_bot/bot.py b/telegram_bot/bot.py index 0763021..3ba5689 100644 --- a/telegram_bot/bot.py +++ b/telegram_bot/bot.py @@ -464,7 +464,7 @@ def remove_share(message): """ user_id = int(message.from_user.id) - bot.send_message(chat_id=user_id, text='Type ISIN/Symbol/CompanyName of share to remove (if you are unsure do /portfolio, find your share and insert the value above amount):') + bot.send_message(chat_id=user_id, text='Type ISIN/Symbol/CompanyName of share to remove (if you are unsure do /shares, find your share and insert the value above amount):') bot.register_next_step_handler(message, remove_share_step) # wait for user to send ISIN, then call remove_share_step function