Skip to content

Commit

Permalink
Added a couple of missing selfs
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Jul 13, 2010
1 parent e35732f commit 6f98b29
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions flaskext/openid.py
Expand Up @@ -214,34 +214,34 @@ def __init__(self, resp):
'http://axschema.org/birthDate/birthMonth'))

#: phone number of the user as string
phone = lookup.get('phone')
self.phone = lookup.get('phone')

#: AIM messenger address as string
aim = lookup.get('aim')
self.aim = lookup.get('aim')

#: icq messenger number as string
icq = lookup.get('icq')
self.icq = lookup.get('icq')

#: msn name as string
msn = lookup.get('msn')
self.msn = lookup.get('msn')

#: yahoo messenger address as string
yahoo = lookup.get('yahoo')
self.yahoo = lookup.get('yahoo')

#: jabber address as string
jabber = lookup.get('jabber')
self.jabber = lookup.get('jabber')

#: skype name as string
skype = lookup.get('skype')
self.skype = lookup.get('skype')

#: URL of website as string
website = lookup.get('website')
self.website = lookup.get('website')

#: URL of blog as string
blog = lookup.get('blog')
self.blog = lookup.get('blog')

#: URL to profile image as string
image = lookup.get('image')
self.image = lookup.get('image')


class OpenID(object):
Expand Down

0 comments on commit 6f98b29

Please sign in to comment.