Skip to content

Commit b9d4ef7

Browse files
Merge pull request #390 from melanger/patch-2
fix: correct return variable in github backend
2 parents fdc3516 + 5a9447e commit b9d4ef7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/satosa/backends/github.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,4 @@ def user_information(self, access_token):
108108
r = requests.get(url, headers=headers)
109109
ret = r.json()
110110
ret['id'] = str(ret['id'])
111-
return r.json()
111+
return ret

0 commit comments

Comments
 (0)