~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/scripts/teamparticipation.py

  • Committer: Curtis Hovey
  • Date: 2011-12-24 17:49:30 UTC
  • mto: This revision was merged to the branch mainline in revision 14602.
  • Revision ID: curtis.hovey@canonical.com-20111224174930-xk1d5cvhyxq46ctf
Moved webapp to lp.services.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
import transaction
27
27
from zope.component import getUtility
28
28
 
29
 
from lp.registry.interfaces.teammembership import ACTIVE_STATES
30
 
from lp.services.database.sqlbase import (
 
29
from canonical.database.sqlbase import (
31
30
    quote,
32
31
    sqlvalues,
33
32
    )
34
 
from lp.services.scripts.base import LaunchpadScriptFailure
35
33
from lp.services.webapp.interfaces import (
36
34
    IStoreSelector,
37
35
    MAIN_STORE,
38
36
    MASTER_FLAVOR,
39
37
    SLAVE_FLAVOR,
40
38
    )
 
39
from lp.registry.interfaces.teammembership import ACTIVE_STATES
 
40
from lp.services.scripts.base import LaunchpadScriptFailure
41
41
 
42
42
 
43
43
def get_master_store():