Skip to content

Commit

Permalink
Fixing error in authorizer
Browse files Browse the repository at this point in the history
  • Loading branch information
djw8605 committed Feb 20, 2018
1 parent 9a776db commit cc74ee5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion authorizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def flask_listener():
if 'jti' in token._claims:
logging.error("Failed to authenticate SciToken ID {0} because {1}".format(token['jti'], message))
else:
logging.error("Failed to authenticate SciToken because {1}".format(message))
logging.error("Failed to authenticate SciToken because {0}".format(message))
return message, 403


Expand Down

0 comments on commit cc74ee5

Please sign in to comment.