~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/codehosting/sshserver/tests/test_session.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-01 11:37:40 UTC
  • mfrom: (14612.2.10 oh-god-so-many-imports)
  • Revision ID: launchpad@pqm.canonical.com-20120101113740-o241xl1m2njr25qn
[r=wgrant][no-qa] Post-apocalyptic tree-wide format-imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
from twisted.internet.process import ProcessExitedAlready
13
13
from twisted.internet.protocol import ProcessProtocol
14
14
 
15
 
from lp.services.config import config
16
15
from lp.codehosting import (
17
16
    get_bzr_path,
18
17
    get_BZR_PLUGIN_PATH_for_subprocess,
27
26
    RestrictedExecOnlySession,
28
27
    )
29
28
from lp.codehosting.tests.helpers import AvatarTestCase
 
29
from lp.services.config import config
30
30
from lp.testing import TestCase
31
31
 
32
32