Commit d2b88348 authored by Nimesh Ghelani's avatar Nimesh Ghelani Committed by Tim Graham
Browse files

[1.4.x] Fixed #20150 -- Fixed an error in manager doc example

Backport of 485c0245 from master
parent 4c6fb23d
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()