diff --git a/telegram/utils/helpers.py b/telegram/utils/helpers.py index 740c19ff1bd..c7697db4239 100644 --- a/telegram/utils/helpers.py +++ b/telegram/utils/helpers.py @@ -87,7 +87,7 @@ def from_timestamp(unixtime): if not unixtime: return None - return datetime.fromtimestamp(unixtime) + return datetime.utcfromtimestamp(unixtime) def mention_html(user_id, name):