~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/make-lp-user

  • Committer: William Grant
  • Date: 2011-12-30 08:13:14 UTC
  • mto: This revision was merged to the branch mainline in revision 14611.
  • Revision ID: william.grant@canonical.com-20111230081314-f73f4ozgkzdi5xqb
More stuff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
import _pythonpath
33
33
 
 
34
from optparse import OptionParser
34
35
import os
35
 
from optparse import OptionParser
36
36
import re
37
37
import subprocess
38
38
import sys
 
39
 
 
40
from storm.store import Store
39
41
import transaction
40
 
 
41
 
from storm.store import Store
42
 
 
43
42
from zope.component import getUtility
44
43
 
45
 
from lp.services.gpg.interfaces import IGPGHandler
46
 
from lp.services.scripts import execute_zcml_for_scripts
47
 
from canonical.lazr.timeout import set_default_timeout_function
48
 
from lp.registry.interfaces.gpg import GPGKeyAlgorithm, IGPGKeySet
 
44
from lp.registry.interfaces.gpg import (
 
45
    GPGKeyAlgorithm,
 
46
    IGPGKeySet,
 
47
    )
49
48
from lp.registry.interfaces.person import IPersonSet
50
49
from lp.registry.interfaces.ssh import ISSHKeySet
51
50
from lp.registry.interfaces.teammembership import TeamMembershipStatus
 
51
from lp.services.gpg.interfaces import IGPGHandler
 
52
from lp.services.scripts import execute_zcml_for_scripts
 
53
from lp.services.timeout import set_default_timeout_function
52
54
from lp.testing.factory import LaunchpadObjectFactory
53
55
 
54
56
# Shut up, pyflakes.