Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
sucs
accountmanager
Commits
05094319
Commit
05094319
authored
Mar 10, 2019
by
Imran Hussain
Browse files
Fix bug where I didn't escape something right :(
parent
d4879af4
Changes
1
Hide whitespace changes
Inline
Side-by-side
sucsam.py
View file @
05094319
...
...
@@ -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
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment