diff options
Diffstat (limited to 'gradescope2gradebook.tcl')
-rwxr-xr-x | gradescope2gradebook.tcl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gradescope2gradebook.tcl b/gradescope2gradebook.tcl index 0f69faf..83e5b9a 100755 --- a/gradescope2gradebook.tcl +++ b/gradescope2gradebook.tcl @@ -108,9 +108,10 @@ foreach col [getColListFromAnyTable gdb gradescope] { if { ![doesColumnExists $shortCol GradesTable] } { puts "Adding: ${shortCol}" - set result [regexp -nocase {pre-lab} $shortCol match] + set result [regexp -nocase "pre-lab" $shortCol match] if { $result} { AddColumnNonWeb $shortCol Quiz 10 + continue } # everything else is labreport AddColumnNonWeb $shortCol LabReport 100 |