~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-09 09:23:38 UTC
  • mfrom: (14333.2.13 history-model)
  • Revision ID: launchpad@pqm.canonical.com-20111209092338-se7u5l0skqzaes1v
[r=jcsackett][bug=295214, 894836,
 898200] Keep sort button ob bug listing pages in sync with the
 displayed data

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
19
25
from lp.app.interfaces.launchpad import ILaunchpadCelebrities
20
26
from lp.bugs.interfaces.bugtask import (
21
27
    BugTaskStatus,
22
28
    IBugTaskSet,
23
29
    )
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: