Skip to content

Commit 222c7f2

Browse files
authored
Update error message
1 parent 673e4f9 commit 222c7f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Deprovision_Slack_User/Deprovision_Slack_User.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ def find_user_by_email(self, user_email, active_only=True):
4747
if user_email == email['value']:
4848
if not active_only or user['active']:
4949
matches.add(user['id'])
50-
msg = F'Multiple Slack accounts share this email:{user_email}!'
51-
msg += 'This is outside the scope of this script.'
50+
msg = F'Multiple Slack accounts share this email:{user_email}! '
51+
msg += 'This is outside the scope of this script. '
5252
msg += 'Please verify Slack account manually.'
5353
if len(matches) == 0:
5454
return None

0 commit comments

Comments
 (0)