From e807c056d38f70b10c1486a6e350449bc7f16134 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger <asterix@lagaule.org> Date: Fri, 13 Jun 2008 15:34:55 +0000 Subject: [PATCH] remove Z char (meaning UTC) in received timestamp. fixes #3796 --- src/common/helpers.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/common/helpers.py b/src/common/helpers.py index d99639e4c1..bcf3acaa97 100644 --- a/src/common/helpers.py +++ b/src/common/helpers.py @@ -1162,10 +1162,13 @@ def datetime_tuple(timestamp): Because of various datetime formats are used the following exceptions are handled: - Optional milliseconds appened to the string are removed + - Optional Z (that means UTC) appened to the string are removed - XEP-082 datetime strings have all '-' cahrs removed to meet the above format.''' timestamp = timestamp.split('.')[0] timestamp = timestamp.replace('-', '') + timestamp = timestamp.replace('z', '') + timestamp = timestamp.replace('Z', '') from time import strptime return strptime(timestamp, '%Y%m%dT%H:%M:%S') -- GitLab