This could be a configuration error on my end, but it seems to me to
be a bug (or feature request).

using newforms:

class MyForm(forms.Form):
  time = forms.TimeField(input_formats=('%H:%M',))

I want just an hour:minute field. The input works fine, but the output
always outputs %H:%M:%S because the TimeField just returns a
datetime.time instance.

Shouldn't it be something like:

return datetime.time(...).strftime(input_formats[0])

so that the output value is a correct input value?


Thanks,
Grant


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to