~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-04-12 13:17:34 UTC
  • mfrom: (12775.3.11 bug-736002)
  • Revision ID: launchpad@pqm.canonical.com-20110412131734-td8mjeehq8z93uzs
[r=jtv][bug=736002] Speed up +bugtarget-portlet-tags-content.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
from zope.event import notify
20
20
from zope.interface import implements
21
21
 
 
22
from canonical.database.enumcol import EnumCol
 
23
from canonical.database.sqlbase import SQLBase
22
24
from lp.app.errors import NotFoundError
23
25
from lp.bugs.interfaces.bugattachment import (
24
26
    BugAttachmentType,
25
27
    IBugAttachment,
26
28
    IBugAttachmentSet,
27
29
    )
28
 
from lp.services.database.enumcol import EnumCol
29
 
from lp.services.database.sqlbase import SQLBase
30
30
from lp.services.propertycache import cachedproperty
31
31
 
32
32