fix sending correct time with DST / non-DST time

This commit is contained in:
Yann Leboulanger 2009-02-10 22:25:04 +00:00
parent 7c96178126
commit 626b080457
1 changed files with 2 additions and 1 deletions

View File

@ -1640,7 +1640,8 @@ class ConnectionHandlers(ConnectionVcard, ConnectionBytestream, ConnectionDisco,
qp = iq_obj.setTag('time',
namespace=common.xmpp.NS_TIME_REVISED)
qp.setTagData('utc', strftime('%Y-%m-%dT%H:%M:%SZ', gmtime()))
zone = -(timezone, altzone)[daylight] / 60
isdst = time.localtime().tm_isdst
zone = -(timezone, altzone)[isdst] / 60
tzo = (zone / 60, abs(zone % 60))
qp.setTagData('tzo', '%+03d:%02d' % (tzo))
self.connection.send(iq_obj)