mirror of
https://github.com/aaronleetw/Attendance.git
synced 2024-11-14 19:11:39 -08:00
Fix error "notes"
This commit is contained in:
parent
8eb6588b75
commit
7efd30e2f4
1 changed files with 4 additions and 0 deletions
|
@ -78,6 +78,8 @@ def manageProcess(fCommand, fData):
|
|||
elif j == "confirm":
|
||||
confirmed.append([h[0], h[1]])
|
||||
continue
|
||||
elif j == "notes":
|
||||
continue
|
||||
if (tmpAbsData[currDate][j]['name'] == 'GP' and
|
||||
tmpAbsData[currDate][j]['teacher'] == cclass['category']):
|
||||
periods.append(j)
|
||||
|
@ -94,6 +96,8 @@ def manageProcess(fCommand, fData):
|
|||
elif j == "confirm":
|
||||
confirmed.append([h[0], h[1]])
|
||||
continue
|
||||
elif j == 'notes':
|
||||
continue
|
||||
if (tmpAbsData[i][j]['name'] == 'GP' and
|
||||
tmpAbsData[i][j]['teacher'] == cclass['category']):
|
||||
periods.append(j)
|
||||
|
|
Loading…
Reference in a new issue