From 621680e340d619c0e95bcf85d02d2758aaa9fabe Mon Sep 17 00:00:00 2001 From: Bridger Maxwell Date: Thu, 28 Jun 2012 12:31:29 -0400 Subject: [PATCH] Removed old global course settings file. --- .../courseware/global_course_settings.py | 28 ------------------- 1 file changed, 28 deletions(-) delete mode 100644 lms/djangoapps/courseware/global_course_settings.py diff --git a/lms/djangoapps/courseware/global_course_settings.py b/lms/djangoapps/courseware/global_course_settings.py deleted file mode 100644 index f4e9696d1d..0000000000 --- a/lms/djangoapps/courseware/global_course_settings.py +++ /dev/null @@ -1,28 +0,0 @@ -GRADER = [ - { - 'type' : "Homework", - 'min_count' : 12, - 'drop_count' : 2, - 'short_label' : "HW", - 'weight' : 0.15, - }, - { - 'type' : "Lab", - 'min_count' : 12, - 'drop_count' : 2, - 'category' : "Labs", - 'weight' : 0.15 - }, - { - 'type' : "Midterm", - 'name' : "Midterm Exam", - 'short_label' : "Midterm", - 'weight' : 0.3, - }, - { - 'type' : "Final", - 'name' : "Final Exam", - 'short_label' : "Final", - 'weight' : 0.4, - } -]