~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-31 00:26:32 UTC
  • mfrom: (14606.4.19 apocaremains-2)
  • Revision ID: launchpad@pqm.canonical.com-20111231002632-67fafhhz150cct3b
[r=wgrant][no-qa] Explode canonical.lazr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
    )
54
54
from zope.security.proxy import removeSecurityProxy
55
55
 
56
 
from canonical.lazr.interfaces.objectprivacy import IObjectPrivacy
57
56
from lp import _
58
57
from lp.registry.interfaces.mailinglist import (
59
58
    CannotChangeSubscription,
97
96
from lp.services.identity.model.account import Account
98
97
from lp.services.identity.model.emailaddress import EmailAddress
99
98
from lp.services.messages.model.message import Message
 
99
from lp.services.privacy.interfaces import IObjectPrivacy
100
100
from lp.services.propertycache import cachedproperty
101
101
 
102
102