summaryrefslogtreecommitdiff
path: root/django/contrib/comments/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/contrib/comments/models.py')
-rw-r--r--django/contrib/comments/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/comments/models.py b/django/contrib/comments/models.py
index a8aff1cfb3..90a84baaff 100644
--- a/django/contrib/comments/models.py
+++ b/django/contrib/comments/models.py
@@ -34,7 +34,7 @@ class CommentManager(models.Manager):
"""
Given a rating_string, this returns a tuple of (rating_range, options).
>>> s = "scale:1-10|First_category|Second_category"
- >>> get_rating_options(s)
+ >>> Comment.objects.get_rating_options(s)
([1, 2, 3, 4, 5, 6, 7, 8, 9, 10], ['First category', 'Second category'])
"""
rating_range, options = rating_string.split('|', 1)