Skip to content
Commits on Source (2)
......@@ -208,7 +208,7 @@ def emailAdminDeleteUser(username):
message = MIMEMultipart()
message['From'] = sender
message['To'] = "logs@sucs.org"
message['Subject'] = username +''s SUCS account has been deleted'
message['Subject'] = username +'\'s SUCS account has been deleted'
messageBody = MIMEText(data, 'plain', "UTF-8")
message.attach(messageBody)
......@@ -314,7 +314,7 @@ def reminderMenu():
if (option == "1"):
for student in studentsBad:
print(str(student[0]) + " because the DB says: " + str(student[1]) )
for soc in soceitiesBad:
for soc in societiesBad:
print(str(soc[0]) + " because the DB says: " + str(soc[1]) )
for ass in associatesBad:
print(str(ass[0]) + " because the DB says: " + str(ass[1]) )
......