~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/scripts/bugexpire.py

Merged fix-retest-colorize into redo-read-only-transactions-in-buildmaster, resolving several import conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
from zope.event import notify
17
17
from zope.interface import providedBy
18
18
 
19
 
from canonical.config import config
20
 
from canonical.launchpad.webapp.interaction import (
21
 
    endInteraction,
22
 
    setupInteraction,
23
 
    )
24
 
from canonical.launchpad.webapp.interfaces import IPlacelessAuthUtility
25
19
from lp.app.interfaces.launchpad import ILaunchpadCelebrities
26
20
from lp.bugs.interfaces.bugtask import (
27
21
    BugTaskStatus,
28
22
    IBugTaskSet,
29
23
    )
 
24
from lp.services.config import config
 
25
from lp.services.webapp.interaction import (
 
26
    endInteraction,
 
27
    setupInteraction,
 
28
    )
 
29
from lp.services.webapp.interfaces import IPlacelessAuthUtility
30
30
 
31
31
 
32
32
class BugJanitor: