Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
accountmanager
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sucs
accountmanager
Compare revisions
d4879af44be2722e0cb4b7f35d656cea45fb41e9 to eafb0a465d70314c0ae4926322675a18a599a014
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
sucs/accountmanager
Select target project
No results found
eafb0a465d70314c0ae4926322675a18a599a014
Select Git revision
Swap
Target
sucs/accountmanager
Select target project
sucs/accountmanager
1 result
d4879af44be2722e0cb4b7f35d656cea45fb41e9
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Fix bug where I didn't escape something right :(
· 05094319
Imran Hussain
authored
6 years ago
05094319
Fix some bugs introduced by typos :(
· eafb0a46
Imran Hussain
authored
6 years ago
eafb0a46
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sucsam.py
+2
-2
2 additions, 2 deletions
sucsam.py
with
2 additions
and
2 deletions
sucsam.py
View file @
eafb0a46
...
...
@@ -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
soc
e
itiesBad
:
for
soc
in
soci
e
tiesBad
:
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
])
)
...
...
This diff is collapsed.
Click to expand it.