Deactivate UTC time computation

This commit is contained in:
Gregory Soutade 2014-12-31 18:00:10 +01:00
parent 24c9807aa8
commit e7e988657e
1 changed files with 4 additions and 4 deletions

View File

@ -352,10 +352,10 @@ class IWLA(object):
gmt_offset_minutes = int(gmt_offset_str[3:5])*60 gmt_offset_minutes = int(gmt_offset_str[3:5])*60
gmt_offset = gmt_offset_hours + gmt_offset_minutes gmt_offset = gmt_offset_hours + gmt_offset_minutes
hit['time_decoded'] = time.strptime(hit['time_local'][:-6], conf.time_format[:-3]) hit['time_decoded'] = time.strptime(hit['time_local'][:-6], conf.time_format[:-3])
if gmt_offset_str[0] == '-': # if gmt_offset_str[0] == '-':
hit['time_decoded'] = time.localtime(time.mktime(hit['time_decoded'])+gmt_offset) # hit['time_decoded'] = time.localtime(time.mktime(hit['time_decoded'])+gmt_offset)
else: # else:
hit['time_decoded'] = time.localtime(time.mktime(hit['time_decoded'])-gmt_offset) # hit['time_decoded'] = time.localtime(time.mktime(hit['time_decoded'])-gmt_offset)
else: else:
raise e raise e
return hit['time_decoded'] return hit['time_decoded']