~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to scripts/list-team-members

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-01 11:37:40 UTC
  • mfrom: (14612.2.10 oh-god-so-many-imports)
  • Revision ID: launchpad@pqm.canonical.com-20120101113740-o241xl1m2njr25qn
[r=wgrant][no-qa] Post-apocalyptic tree-wide format-imports.

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):