I have a script like this:
import datetime
# variable cal_start_of_week_date has type <type 'datetime.date'>
# variable period has type <type 'datetime.timedelta'>
cal_prev_monday = (cal_start_of_week_date - period).date()
When the above statement is executed, I get the error:
AttributeError: 'datetime.date' object has no attribute 'date'
How to fix this?
.date()from the end? – PreludeAndFugue Jul 7 '10 at 13:54