From da1660a043fcf6e28769fd3a9b8c26f55fdd98d2 Mon Sep 17 00:00:00 2001 From: Your Name Date: Thu, 31 Jan 2013 17:34:37 -0500 Subject: [PATCH] fix get_cohorted_commentables --- common/djangoapps/course_groups/cohorts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/djangoapps/course_groups/cohorts.py b/common/djangoapps/course_groups/cohorts.py index 4fda68bf36..4d74f70b26 100644 --- a/common/djangoapps/course_groups/cohorts.py +++ b/common/djangoapps/course_groups/cohorts.py @@ -79,7 +79,7 @@ def get_cohorted_commentables(course_id): # this is the easy case :) ans = [] else: - ans = course.top_level_discussion_topic_ids + ans = course.cohorted_discussions return ans