~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to scripts/list-team-members

  • Committer: William Grant
  • Date: 2012-01-01 03:13:08 UTC
  • mto: This revision was merged to the branch mainline in revision 14614.
  • Revision ID: william.grant@canonical.com-20120101031308-ozhin5aaoxj5th20
scripts

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
__metaclass__ = type
7
7
 
 
8
import _pythonpath
 
9
 
8
10
import logging
9
11
import sys
10
12
 
11
 
import _pythonpath
12
 
 
 
13
from lp.registry.scripts.listteammembers import (
 
14
    NoSuchTeamError,
 
15
    process_team,
 
16
    )
13
17
from lp.services.config import config
14
 
 
15
18
from lp.services.scripts import execute_zcml_for_scripts
16
19
from lp.services.scripts.base import LaunchpadScript
17
 
from lp.registry.scripts.listteammembers import process_team, NoSuchTeamError
18
20
 
19
21
 
20
22
class ListTeamMembersScript(LaunchpadScript):