Skip to content

Commit

Permalink
Fix a typo in the Authorization class.
Browse files Browse the repository at this point in the history
This is what I get for rushing.
  • Loading branch information
sigmavirus24 committed Oct 3, 2012
1 parent 54cc3a7 commit e6bb21f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion github3/auths.py
Expand Up @@ -19,7 +19,7 @@ def __init__(self, auth, session):
#: Returns the Authorization token
self.token = auth.get('token', '')
#: App name
self.name = auth.app.get('name', '')
self.name = self.app.get('name', '')
#: URL about the note
self.note_url = auth.get('note_url', '')
#: Note about the authorization
Expand Down

0 comments on commit e6bb21f

Please sign in to comment.