Skip to content
Snippets Groups Projects
Commit 05094319 authored by Imran Hussain's avatar Imran Hussain
Browse files

Fix bug where I didn't escape something right :(

parent d4879af4
No related branches found
No related tags found
No related merge requests found
...@@ -208,7 +208,7 @@ def emailAdminDeleteUser(username): ...@@ -208,7 +208,7 @@ def emailAdminDeleteUser(username):
message = MIMEMultipart() message = MIMEMultipart()
message['From'] = sender message['From'] = sender
message['To'] = "logs@sucs.org" 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") messageBody = MIMEText(data, 'plain', "UTF-8")
message.attach(messageBody) message.attach(messageBody)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment