Loading sucsam.py +6 −4 Original line number Diff line number Diff line Loading @@ -383,8 +383,9 @@ def reminderMenu(): print(str(student[0]) + " last paid: " + str(student[1])) for soc in societiesBad: print(str(soc[0]) + " last paid: " + str(soc[1])) for ass in associatesBad: print(str(ass[0]) + " last paid: " + str(ass[1])) print("Not emailing associates as we don't have a programatic way of checking their status.") #for ass in associatesBad: # print(str(ass[0]) + " last paid: " + str(ass[1])) reminderMenu() if option == "2": if len(studentsBad) > 0: Loading @@ -400,8 +401,9 @@ def reminderMenu(): if len(societiesBad) > 0: sendReminderEmail(societiesBad) if option == "2.3": if len(associatesBad) > 0: sendReminderEmail(associatesBad) print("Not emailing associates as we don't have a programatic way of checking their status.") #if len(associatesBad) > 0: # sendReminderEmail(associatesBad) if option == "0": mainMenu() else: Loading Loading
sucsam.py +6 −4 Original line number Diff line number Diff line Loading @@ -383,8 +383,9 @@ def reminderMenu(): print(str(student[0]) + " last paid: " + str(student[1])) for soc in societiesBad: print(str(soc[0]) + " last paid: " + str(soc[1])) for ass in associatesBad: print(str(ass[0]) + " last paid: " + str(ass[1])) print("Not emailing associates as we don't have a programatic way of checking their status.") #for ass in associatesBad: # print(str(ass[0]) + " last paid: " + str(ass[1])) reminderMenu() if option == "2": if len(studentsBad) > 0: Loading @@ -400,8 +401,9 @@ def reminderMenu(): if len(societiesBad) > 0: sendReminderEmail(societiesBad) if option == "2.3": if len(associatesBad) > 0: sendReminderEmail(associatesBad) print("Not emailing associates as we don't have a programatic way of checking their status.") #if len(associatesBad) > 0: # sendReminderEmail(associatesBad) if option == "0": mainMenu() else: Loading