Ticket #17759: django-17759.patch

File django-17759.patch, 421 bytes (added by Aron Grififs, 12 years ago)
  • django/views/generic/edit.py

     
    1919        """
    2020        Returns the initial data to use for forms on this view.
    2121        """
    22         return self.initial
     22        return dict(self.initial)
    2323
    2424    def get_form_class(self):
    2525        """
Back to Top