sandiegopython / test-driven-django-development

This repository contains materials for a San Diego Python workshop on learning Django with test inspired development
http://test-driven-django-development.readthedocs.org/
Other
102 stars 35 forks source link

In section: Displaying the comment form #150

Open riseriyo opened 9 years ago

riseriyo commented 9 years ago

incorrect code, change from: def get_form_kwargs(self): kwargs = super().get_form_kwargs() kwargs['entry'] = self.entry <====== change this return kwargs

to: def get_form_kwargs(self): kwargs = super().get_form_kwargs() kwargs['entry'] = self.get_objects() <==== to this return kwargs