Skip to content

Commit 690ce51

Browse files
committed
Fix illegal double quotes inside double quotes
1 parent d6ffa84 commit 690ce51

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/common/social_core/backends.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class AuthSCHOAuth2(BaseOAuth2):
2727
def get_user_details(self, response):
2828
"""Return user details from AuthSCH account"""
2929
return {
30-
"username": f"{response.get("directory.sch.bme.hu:sAMAccountName")}@sch.bme.hu",
30+
"username": f"{response.get('directory.sch.bme.hu:sAMAccountName')}@sch.bme.hu",
3131
"email": response.get("email"),
3232
"first_name": response.get("given_name"),
3333
"last_name": response.get("family_name"),

0 commit comments

Comments
 (0)