~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/mock-code-import

  • Committer: William Grant
  • Date: 2012-01-01 03:10:25 UTC
  • mto: This revision was merged to the branch mainline in revision 14614.
  • Revision ID: william.grant@canonical.com-20120101031025-pcl0na3sbgfrztcw
utilities

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
import _pythonpath
24
24
 
25
25
import os
26
 
from subprocess import PIPE, Popen
 
26
from subprocess import (
 
27
    PIPE,
 
28
    Popen,
 
29
    )
27
30
import tempfile
 
31
 
28
32
import transaction
29
33
 
30
 
from lp.codehosting.codeimport.tests.test_foreigntree import (
31
 
    SubversionServer)
 
34
from lp.codehosting.codeimport.tests.test_foreigntree import SubversionServer
32
35
from lp.services.scripts import execute_zcml_for_scripts
 
36
from lp.services.webapp import canonical_url
33
37
from lp.testing.factory import LaunchpadObjectFactory
34
 
from lp.services.webapp import canonical_url
35
38
 
36
39
 
37
40
def shell(*args):