I was looking through the code today and saw this:
http://code.djangoproject.com/browser/django/trunk/django/newforms/extras/widgets.py

def value_from_datadict(self, data, name):
                y, m, d = data.get(self.year_field % name),
data.get(self.month_field % name), data.get(self.day_field % name)
                if y and m and d:
                    return '%s-%s-%s' % (y, m, d)
                return None

Does that have anything to do with my problem?


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