Skip to content

Commit

Permalink
A line break.
Browse files Browse the repository at this point in the history
  • Loading branch information
VJalili committed Dec 17, 2017
1 parent 794746e commit e168eaf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/galaxy/authnz/psa_authnz.py
Expand Up @@ -124,7 +124,11 @@ def callback(self, state_token, authz_code, trans):
strategy.session_set(BACKENDS_NAME[config['provider']]+'_state', state_token)
backend = self.load_backend(strategy, config['redirect_uri'])
backend.redirect_uri = config['redirect_uri']
redirect_url = do_complete(backend, login=lambda backend, user, social_user: self.login_user(backend, user, social_user), user=self.get_current_user(trans), state=state_token)
redirect_url = do_complete(
backend,
login=lambda backend, user, social_user: self.login_user(backend, user, social_user),
user=self.get_current_user(trans),
state=state_token)
return redirect_url, config.get('user', None)

def disconnect(self, provider, trans, redirect_url=None, association_id=None):
Expand Down

0 comments on commit e168eaf

Please sign in to comment.