~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/codehosting/sftp.py

  • Committer: Jonathan Lange
  • Date: 2010-03-21 16:25:49 UTC
  • mfrom: (10554 launchpad)
  • mto: This revision was merged to the branch mainline in revision 10558.
  • Revision ID: jml@canonical.com-20100321162549-5bqb52pif7wn98jc
Merge stable

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
__metaclass__ = type
16
16
__all__ = [
17
 
    'AvatarToSFTPAdapter',
 
17
    'avatar_to_sftp_server',
18
18
    'FileTransferServer',
19
19
    'TransportSFTPServer',
20
20
    ]
40
40
from lp.codehosting.vfs import AsyncLaunchpadTransport, LaunchpadServer
41
41
from lp.codehosting.sshserver import accesslog
42
42
from canonical.config import config
43
 
from canonical.twistedsupport import gatherResults
 
43
from lp.services.twistedsupport import gatherResults
44
44
 
45
45
 
46
46
class FileIsADirectory(bzr_errors.PathError):