From 450ef42a836555987d8bd2a454af3526a213fad6 Mon Sep 17 00:00:00 2001 From: eternnoir Date: Sun, 30 Apr 2017 19:40:27 +0800 Subject: [PATCH] Fix typo. --- telebot/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telebot/types.py b/telebot/types.py index 8cd9063..a8d2ef5 100644 --- a/telebot/types.py +++ b/telebot/types.py @@ -865,7 +865,7 @@ class InputLocationMessageContent(Dictionaryable): self.longitude = longitude def to_dic(self): - json_dic = {'latitude': self.latitudet, 'longitude': self.longitude} + json_dic = {'latitude': self.latitude, 'longitude': self.longitude} return json_dic