On Monday 14 Jul 2008, Rajesh Dhawan wrote: > The replace method here returns a new instance of a datetime object -- > it's not an in-place replace. This should work: > > self.datetime = self.datetime.replace(hour=23, minute=59)
Hmm, that seemed to make sense to me too, though with my Java background I wasn't sure. I get: Exception Value: 'hour' is an invalid keyword argument for this function on self.datetime = self.datetime.replace(hour=23, minute=59) self.datetime is defined as: datetime = models.DateTimeField() Cheers, Tim. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---