~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/googlesearch/googletestservice.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:
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__)