From e66f9a243b5fad6c0dcc9e95c88f3cbb07d272c3 Mon Sep 17 00:00:00 2001 From: Julia Hansbrough Date: Mon, 4 Nov 2013 15:57:57 +0000 Subject: [PATCH] Clarified wording in a docstring --- lms/djangoapps/courseware/access.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lms/djangoapps/courseware/access.py b/lms/djangoapps/courseware/access.py index 6c8e7ec8ee..4535ff2616 100644 --- a/lms/djangoapps/courseware/access.py +++ b/lms/djangoapps/courseware/access.py @@ -205,10 +205,8 @@ def _has_access_course_desc(user, course, action): def can_refund(): """ - For paid/verified certificates, students may receive a refund IFF the deadline - for refunds has not yet passed. Note that this function *only* checks whether - or not that deadline has passed; checking whether the student actually *purchased* - a paid/verified certificate must be done elsewhere. + For paid/verified certificates, students may receive a refund IFF they have + a verified certificate and the deadline for refunds has not yet passed. """ course_mode = CourseMode.mode_for_course(course.id, 'verified') if course_mode is None: