From 9b74625d4aa1ca46b7d1ed5034458263bfef8313 Mon Sep 17 00:00:00 2001 From: Noam Meltzer Date: Tue, 4 Oct 2016 00:55:29 +0300 Subject: [PATCH] answerCallbackQuery: fix copy/paste: show_alert -> url --- telegram/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telegram/bot.py b/telegram/bot.py index 2cab31a6c..c3ac3044c 100644 --- a/telegram/bot.py +++ b/telegram/bot.py @@ -1076,7 +1076,7 @@ class Bot(TelegramObject): if show_alert: data['show_alert'] = show_alert if url: - data['show_alert'] = url + data['url'] = url result = self._request.post(url_, data, timeout=kwargs.get('timeout'))