Rename "is_default_cohort" method.

This commit is contained in:
cahrens
2016-04-14 16:38:34 -04:00
parent ce6ffe6d61
commit 1cd54d5fb7
2 changed files with 4 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ from courseware.courses import get_course_by_id
from verified_track_content.tasks import sync_cohort_with_mode
from openedx.core.djangoapps.course_groups.cohorts import (
get_course_cohorts, CourseCohort, is_course_cohorted, get_random_cohort, is_default_cohort
get_course_cohorts, CourseCohort, is_course_cohorted, get_random_cohort
)
import logging

View File

@@ -430,7 +430,7 @@ def set_assignment_type(user_group, assignment_type):
"""
course_cohort = user_group.cohort
if is_default_cohort(user_group) and course_cohort.assignment_type != assignment_type:
if is_last_random_cohort(user_group) and course_cohort.assignment_type != assignment_type:
raise ValueError(_("There must be one cohort to which students can automatically be assigned."))
course_cohort.assignment_type = assignment_type
@@ -445,9 +445,9 @@ def get_assignment_type(user_group):
return course_cohort.assignment_type
def is_default_cohort(user_group):
def is_last_random_cohort(user_group):
"""
Check if a cohort is default.
Check if this cohort is the only random cohort in the course.
"""
random_cohorts = CourseUserGroup.objects.filter(
course_id=user_group.course_id,