Skip to content

Commit

Permalink
Merge pull request #29 from melanger/patch-1
Browse files Browse the repository at this point in the history
Fix a typo in authz_state.py
  • Loading branch information
c00kiemon5ter authored Sep 29, 2020
2 parents 09256c2 + c97e78d commit 03aedef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyop/authz_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ def get_subject_identifier(self, subject_type, user_id, sector_identifier=None):
new_sub = self._subject_identifier_factory.create_public_identifier(user_id)
self.subject_identifiers[user_id] = {'public': new_sub}

logger.debug('created new public sub=% for user_id=%s',
logger.debug('created new public sub=%s for user_id=%s',
self.subject_identifiers[user_id]['public'], user_id)
sub = self.subject_identifiers[user_id]['public']
logger.debug('returning public sub=%s', sub)
Expand Down

0 comments on commit 03aedef

Please sign in to comment.