> page_data['topic_modification_date'] = datetime.datetime.date() > page_data['topic_modification_date_time'] = datetime.datetime.time()
What James is saying is suggesting is that do_html2python only expects strings or lists of strings, but you were trying to pass in a datetime object. Give it the string(s) it expects instead: now = datetime.now() page_data['topic_modification_date_date'] = now.strftime('%Y-%m-%d') page_data['topic_modification_date_time'] = now.strftime('%H:%M:%S') -rob --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---