Skip to content

Commit

Permalink
Fix a line indentation issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
VJalili committed Jan 15, 2018
1 parent 2a6f6e1 commit 0f4ec2f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/galaxy/authnz/psa_authnz.py
Expand Up @@ -196,8 +196,9 @@ def build_absolute_uri(self, path=None):
path = path or ''
if path.startswith('http://') or path.startswith('https://'):
return path
return self.trans.request.host + '/authn' + \
('/' + self.config.get('provider')) if self.config.get('provider', None) is not None else ''
return \
self.trans.request.host +\
'/authn' + ('/' + self.config.get('provider')) if self.config.get('provider', None) is not None else ''

def redirect(self, url):
return url
Expand Down

0 comments on commit 0f4ec2f

Please sign in to comment.