~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/looptuner.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-22 04:45:35 UTC
  • mfrom: (14565.2.24 apocalyptic-pieces)
  • Revision ID: launchpad@pqm.canonical.com-20111222044535-jbjyzq3hzwiy7g20
[rs=sinzui][no-qa] Move javascript and scripts to lp. Dismantle
 mailnotification.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
    implements,
23
23
    )
24
24
 
25
 
import canonical.launchpad.scripts
 
25
import lp.services.scripts
26
26
from canonical.launchpad.webapp.interfaces import (
27
27
    IStoreSelector,
28
28
    MAIN_STORE,
129
129
        self.cooldown_time = cooldown_time
130
130
        self.abort_time = abort_time
131
131
        if log is None:
132
 
            self.log = canonical.launchpad.scripts.log
 
132
            self.log = lp.services.scripts.log
133
133
        else:
134
134
            self.log = log
135
135