Commit ce11dde7 authored by Tim Graham's avatar Tim Graham
Browse files

Merge pull request #977 from nims11/ticket_20150

Fixed #20150 -- Fixed an error in manager doc example
parents 0524ad3f 485c0245
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -85,7 +85,7 @@ returns a list of all ``OpinionPoll`` objects, each with an extra
        objects = PollManager()

    class Response(models.Model):
        poll = models.ForeignKey(Poll)
        poll = models.ForeignKey(OpinionPoll)
        person_name = models.CharField(max_length=50)
        response = models.TextField()