Closed this issue 12 years ago · 1 comments
just wanted to say, great library.
time.ctime(timelib.strtotime('today'))
returns the date of yesterday
timelib uses utc, whereas time.ctime computes the local time.
try
time.asctime(time.gmtime(timelib.strtotime("today")))