Commit a9e8b3fa by Calen Pennington

Fix broken docstring

parent 198d4262
...@@ -84,10 +84,11 @@ def _has_access_course_desc(user, course, action): ...@@ -84,10 +84,11 @@ def _has_access_course_desc(user, course, action):
'staff' -- staff access to course. 'staff' -- staff access to course.
""" """
def can_load(): def can_load():
"Can this user load this course? """
Can this user load this course?
NOTE: this is not checking whether user is actually enrolled in the course. NOTE: this is not checking whether user is actually enrolled in the course.
" """
# delegate to generic descriptor check to check start dates # delegate to generic descriptor check to check start dates
return _has_access_descriptor(user, course, action) return _has_access_descriptor(user, course, action)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment