On Sep 8, 10:26 am, Gonzillaaa <gonzill...@gmail.com> wrote: > Hello I'm importing data into django and using its admin interface to > browse and search for data. > > Each piece of data is timestamped by me at log time. The docs say data > on a DateTimeField() should be a valid datetime.datetime object but I > am unclear of format (tuple, string etc..)
Your question doesn't make sense. As you say, the docs say it should be a datetime.datetime object. What does format have to do with it? > data = InfrarredTimes( loc_id = loc, node_id = node_id, pin_id > = pin_id, \ > time_start = time.strftime( '%Y-%m-%d > %H:%M:%S', time_start ), \ > time_end = time.strftime( '%Y-%m-%d %H: > %M:%S', time_end ), \ > time_difference = time_difference ) > data.save() > return True > > this is not working at the moment. any pointers much appreciated. But you've ignored the bit that you quoted above! Why are you using time instead of datetime? Why are you converting the time into a string instead of a datetime object? time_start = datetime.datetime(2009, 9, 8, 11, 15) -- DR. --~--~---------~--~----~------------~-------~--~----~ 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 django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---