diff options
-rwxr-xr-x | importGrades2gradebook.tcl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/importGrades2gradebook.tcl b/importGrades2gradebook.tcl index c0b8ac1..eab8047 100755 --- a/importGrades2gradebook.tcl +++ b/importGrades2gradebook.tcl @@ -52,7 +52,7 @@ try { } ################# Config ############################################ -set categories2import [list FinalExam HomeWork LabReport LogBook MidTerm] +set categories2import [list FinalExam HomeWork LabReport LogBook MidTerm Participation] #set categories2import [list FinalExam] set commonInfoCol {{First Name} {Last Name} {Student ID} {Last Access} Username Availability } @@ -228,6 +228,7 @@ proc parseBlackboardColName { col } { "Extra Credit" { set name "Final Project Bonus" ; set category FinalExam; set maxScore 0 } "HW PhysFest Bonus" { set category HomeWork; set maxScore 0 } "HW bonus problem" { set category HomeWork; set maxScore 0 } + "Problem Section Bonus" { set category Participation; } default { } } if { $number eq "" } { |