Date Custom Field Timezone

You need to convert the timestamp to the local timezone. I don't know OTOH how to do that. Perhaps

t = event.get('tempdate').time
t.localtime('+01:00')
event.set('logdatetime', t.strftime('%Y-%m-%dT%H:%M:%S +0100'))

works.

1 Like