summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-07-14 18:26:01 +0000
committerlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-07-14 18:26:01 +0000
commit93351156a122dd7e374778c1c838b5c4c1dda83d (patch)
tree27566d15029a62b073f6fa4965a8ebcb956137d1 /src
parent25e82efebfe97b3efc6366bf32eaf7282c69bc39 (diff)
downloadpoezio-93351156a122dd7e374778c1c838b5c4c1dda83d.tar.gz
poezio-93351156a122dd7e374778c1c838b5c4c1dda83d.tar.bz2
poezio-93351156a122dd7e374778c1c838b5c4c1dda83d.tar.xz
poezio-93351156a122dd7e374778c1c838b5c4c1dda83d.zip
history time is now correct. fixed #1571
Diffstat (limited to 'src')
-rw-r--r--src/common.py12
-rw-r--r--src/gui.py3
2 files changed, 8 insertions, 7 deletions
diff --git a/src/common.py b/src/common.py
index 3edc9e14..4406e4cb 100644
--- a/src/common.py
+++ b/src/common.py
@@ -33,7 +33,7 @@
"""
various useful functions
"""
-
+from datetime import datetime, timedelta
import base64
import os
import mimetypes
@@ -44,6 +44,7 @@ import sys
import select
import errno
import xmpp
+import time
def debug(string):
"""
@@ -261,7 +262,8 @@ def datetime_tuple(timestamp):
"""
timestamp = timestamp.split('.')[0]
timestamp = timestamp.replace('-', '')
- timestamp = timestamp.replace('z', '')
- timestamp = timestamp.replace('Z', '')
- from datetime import datetime
- return datetime.strptime(timestamp, '%Y%m%dT%H:%M:%S')
+ ret = datetime.strptime(timestamp, '%Y%m%dT%H:%M:%SZ')
+ # convert UTC to local time, with DST etc.
+ dst = timedelta(seconds=time.altzone)
+ ret -= dst
+ return ret
diff --git a/src/gui.py b/src/gui.py
index 4e05d5d7..96f27907 100644
--- a/src/gui.py
+++ b/src/gui.py
@@ -377,8 +377,7 @@ class Gui(object):
"""
Display the message on the room window
"""
- delay_tag = stanza.getTag('delay', namespace='urn:xmpp:delay')
- if delay_tag and not date:
+ if delay_tag:
delayed = True
date = common.datetime_tuple(delay_tag.getAttr('stamp'))
else: