~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/xmlrpc/mailinglist.py

  • 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:
15
15
from zope.interface import implements
16
16
from zope.security.proxy import removeSecurityProxy
17
17
 
18
 
from lp.services.config import config
19
 
from lp.services.webapp import LaunchpadXMLRPCView
20
 
from lp.xmlrpc import faults
21
18
from lp.registry.interfaces.mailinglist import (
22
19
    IMailingListAPIView,
23
20
    IMailingListSet,
30
27
    PersonalStanding,
31
28
    PersonVisibility,
32
29
    )
 
30
from lp.services.config import config
33
31
from lp.services.encoding import escape_nonascii_uniquely
34
32
from lp.services.identity.interfaces.emailaddress import (
35
33
    EmailAddressStatus,
36
34
    IEmailAddressSet,
37
35
    )
38
36
from lp.services.messages.interfaces.message import IMessageSet
 
37
from lp.services.webapp import LaunchpadXMLRPCView
 
38
from lp.xmlrpc import faults
39
39
 
40
40
# Not all developers will have built the Mailman instance (via
41
41
# 'make mailman_instance').  In that case, this import will fail, but in that