Hi Tim, > I have an object with a model.DateTimeField on it. For various reasons, I > need to set the time portion of this field to 23:59 when I populate it from a > form. > > datetime = models.DateTimeField() > > How can I do this? I've tried > > self.datetime = pForm.cleaned_data['datetime'] > self.datetime.replace(hour=23, minute=59)
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) That works both when datetime is a forms.DateTimeField or models.DateTimeField. > > but hour isn't accepted as a parameter to replace. It is. Are you getting a Python error when you do that? > > I'm also confused as to how the DateTimeField maps on to a python datetime > object, can anyone educate me? You can directly assign a Python datetime object to a models.DateTimeField. -Rajesh D --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---