~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/model/bugactivity.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-31 00:16:50 UTC
  • mfrom: (14606.3.7 apocaremains)
  • Revision ID: launchpad@pqm.canonical.com-20111231001650-pjeyhfjhm6mg3yp8
[r=wgrant][no-qa] Merge canonical.database into lp.services.database.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
from storm.store import Store
16
16
from zope.interface import implements
17
17
 
18
 
from canonical.database.datetimecol import UtcDateTimeCol
19
 
from canonical.database.sqlbase import SQLBase
20
18
from lp.bugs.adapters.bugchange import (
21
19
    ATTACHMENT_ADDED,
22
20
    ATTACHMENT_REMOVED,
36
34
    IBugActivitySet,
37
35
    )
38
36
from lp.registry.interfaces.person import validate_person
 
37
from lp.services.database.datetimecol import UtcDateTimeCol
 
38
from lp.services.database.sqlbase import SQLBase
39
39
 
40
40
 
41
41
class BugActivity(SQLBase):