Skip to content

Commit

Permalink
Merge pull request #36 from raccoongang/arsentur/EXAM-271/bugfix/fix-…
Browse files Browse the repository at this point in the history
…email-pipeline-partial-token

[EXAM-271] Fix email pipeline partial token
  • Loading branch information
NikolayBorovenskiy authored Apr 27, 2021
2 parents 704bce3 + c73a191 commit b81aacd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion edx_oauth_client/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def fill_in_email(
'path': request.path,
'state': request.GET.get('state'),
'code': request.GET.get('code'),
'partial_token': request.GET.get('partial_token'),
'partial_token': kwargs.get('current_partial').token,
}
)
else:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='edx-oauth-client',
version='1.0.3',
version='1.0.4',
description='Client OAuth2 from edX installations',
author='edX',
url='https://github.com/raccoongang/edx_oauth_client',
Expand Down

0 comments on commit b81aacd

Please sign in to comment.