~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/scripts/runlaunchpad.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-31 00:26:32 UTC
  • mfrom: (14606.4.19 apocaremains-2)
  • Revision ID: launchpad@pqm.canonical.com-20111231002632-67fafhhz150cct3b
[r=wgrant][no-qa] Explode canonical.lazr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
from lp.services.config import config
23
23
from lp.services.daemons import tachandler
24
 
from canonical.lazr.pidfile import (
 
24
from lp.services.googlesearch import googletestservice
 
25
from lp.services.mailman import runmailman
 
26
from lp.services.osutils import ensure_directory_exists
 
27
from lp.services.pidfile import (
25
28
    make_pidfile,
26
29
    pidfile_path,
27
30
    )
28
 
from lp.services.googlesearch import googletestservice
29
 
from lp.services.mailman import runmailman
30
 
from lp.services.osutils import ensure_directory_exists
31
31
from lp.services.rabbit.server import RabbitServer
32
32
from lp.services.txlongpoll.server import TxLongPollServer
33
33