~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Steve Kowalik
  • Date: 2011-08-07 04:05:52 UTC
  • mto: This revision was merged to the branch mainline in revision 13626.
  • Revision ID: stevenk@ubuntu.com-20110807040552-mwnxo0flmhvl35e8
Correct the notification based on review comments, and remove request{,ed}
from the function names, switching to create{,d}.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
    )
19
19
from zope.interface import implements
20
20
 
 
21
from canonical.config import config
 
22
from canonical.database.constants import UTC_NOW
 
23
from canonical.database.datetimecol import UtcDateTimeCol
 
24
from canonical.database.sqlbase import (
 
25
    SQLBase,
 
26
    sqlvalues,
 
27
    )
21
28
from lp.registry.interfaces.personnotification import (
22
29
    IPersonNotification,
23
30
    IPersonNotificationSet,
24
31
    )
25
 
from lp.services.config import config
26
 
from lp.services.database.constants import UTC_NOW
27
 
from lp.services.database.datetimecol import UtcDateTimeCol
28
 
from lp.services.database.sqlbase import (
29
 
    SQLBase,
30
 
    sqlvalues,
31
 
    )
 
32
from lp.services.propertycache import cachedproperty
32
33
from lp.services.mail.sendmail import (
33
34
    format_address,
34
35
    simple_sendmail,
35
36
    )
36
 
from lp.services.propertycache import cachedproperty
37
37
 
38
38
 
39
39
class PersonNotification(SQLBase):