From ae92d1998e7a238360c46a7268ed8a34a5b20388 Mon Sep 17 00:00:00 2001 From: Kondra007 Date: Fri, 15 Apr 2016 21:04:08 +0300 Subject: [PATCH] Fixed typo in InlineQueryResultArticle --- telebot/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telebot/types.py b/telebot/types.py index 3d8b045..f1cc496 100644 --- a/telebot/types.py +++ b/telebot/types.py @@ -1052,7 +1052,7 @@ class InlineQueryResultAudio(JsonSerializable): self.input_message_content = input_message_content def to_json(self): - json_dict = {'type': self.type, 'id': self.id, 'audio_url': self.audio_url, 'title': self.titlee} + json_dict = {'type': self.type, 'id': self.id, 'audio_url': self.audio_url, 'title': self.title} if self.performer: json_dict['performer'] = self.performer if self.audio_duration: