Reputation: 4353
According to Convert UTC to local time to UTC in Python and Google App Engine, to correctly compare the times of now and a target time (considering different time zones), I have to convert the target time to UTC as follows:
import pytz
def toUTC(date, tz):
tz = pytz.timezone('Asia/Taipei')
utc = pytz.timezone('UTC')
d_tz = tz.normalize(tz.localize(date))
d_utc = d_tz.astimezone(utc)
return d_utc
days = 10
minutes = 20
targetTime = datetime.datetime(2012,12,22,0,0,0)
targetTime = targetTime + datetime.timedelta(days=days, minutes=minutes)
targetTime = toUTC(targetTime)
if targetTime < datetime.datetime.now():
...
Questions:
There is an error message:
TypeError: can't compare offset-naive and offset-aware datetimes
How to solve it?
Upvotes: 1
Views: 2064