~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/googlesearch/googletestservice.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:
22
22
import time
23
23
 
24
24
from lp.services.config import config
25
 
from lp.services.webapp.url import urlsplit
26
 
from canonical.lazr.pidfile import (
 
25
from lp.services.osutils import ensure_directory_exists
 
26
from lp.services.pidfile import (
27
27
    get_pid,
28
28
    make_pidfile,
29
29
    pidfile_path,
30
30
    )
31
 
from lp.services.osutils import ensure_directory_exists
 
31
from lp.services.webapp.url import urlsplit
32
32
 
33
33
# Set up basic logging.
34
34
log = logging.getLogger(__name__)