1
0
mirror of https://github.com/eternnoir/pyTelegramBotAPI.git synced 2023-08-10 21:12:57 +03:00

Merge pull request #131 from Kondra007/patch-4

Fixed typo in InlineQueryResultAudio
This commit is contained in:
FrankWang 2016-04-16 11:22:33 +08:00
commit 96e06c248b

View File

@ -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: