From 1cc0743061cb563e5cfcaf1b2fc0422da63e87b2 Mon Sep 17 00:00:00 2001 From: Ceda EI Date: Tue, 21 May 2019 16:04:06 +0530 Subject: [PATCH] Add client list in tokens. --- bot.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/bot.py b/bot.py index ea2bdb9..8a2179f 100755 --- a/bot.py +++ b/bot.py @@ -401,9 +401,13 @@ def tokens(bot, update): reply_markup = telegram.ReplyKeyboardMarkup(custom_keyboard) reply_text = ("Tokens are used to authenticate external " "applications. This only provides access to " - "Questable data.") + "Questable data.\n" + "\nOfficial clients are:\n" + "[Questable CLI](https://gitlab.com/questable/questable-cli)" + ) bot.send_message(chat_id=update.message.chat_id, text=reply_text, - reply_markup=reply_markup) + reply_markup=reply_markup, parse_mode="markdown", + disable_web_page_preview=True) def add_token(bot, update, player):