Skip to content

Commit 10c9011

Browse files
committed
Fix copy-paste -error
1 parent 09eda85 commit 10c9011

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project/slacksync/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def quick_invite(email):
2525
return False
2626
slack = get_client()
2727
try:
28-
resp = slack.users.admin.invite(member.email)
28+
resp = slack.users.admin.invite(email)
2929
if 'ok' not in resp.body or not resp.body['ok']:
3030
self.logger.error("Could not invite {}, response: {}".format(email, response.body))
3131
return False

0 commit comments

Comments
 (0)