~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: William Grant
  • Date: 2011-12-30 08:13:14 UTC
  • mto: This revision was merged to the branch mainline in revision 14611.
  • Revision ID: william.grant@canonical.com-20111230081314-f73f4ozgkzdi5xqb
More stuff.

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