~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/model/person.py

  • Committer: William Grant
  • Date: 2011-12-08 05:13:31 UTC
  • mto: (14455.3.1 more-canonical-purge)
  • mto: This revision was merged to the branch mainline in revision 14456.
  • Revision ID: william.grant@canonical.com-20111208051331-rmaix1cx89kws5vs
Move oauth code to lp.services.oauth.

Show diffs side-by-side

added added

removed removed

Lines of Context:
131
131
    )
132
132
from canonical.launchpad.database.librarian import LibraryFileAlias
133
133
from canonical.launchpad.database.logintoken import LoginToken
134
 
from canonical.launchpad.database.oauth import (
135
 
    OAuthAccessToken,
136
 
    OAuthRequestToken,
137
 
    )
138
134
from canonical.launchpad.helpers import (
139
135
    ensure_unicode,
140
136
    get_contact_email_addresses,
285
281
    TeamMembershipSet,
286
282
    TeamParticipation,
287
283
    )
 
284
from lp.services.oauth.model import (
 
285
    OAuthAccessToken,
 
286
    OAuthRequestToken,
 
287
    )
288
288
from lp.services.openid.model.openididentifier import OpenIdIdentifier
289
289
from lp.services.propertycache import (
290
290
    cachedproperty,