Have a piece of code in python: now = datetime.datetime.now().strftime("%c")
when I run it in python I get this :
>>> import datetime, time; now = datetime.datetime.now().strftime("%c"); print now
Mon Jun 8 10:52:59 2015
This is correct
However when I run in Odoo (regardless of my timezone) it always shows UTC which is 2 hours behind.
Any advise?