~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/codehosting/sshserver/auth.py

  • Committer: Michael Hudson
  • Date: 2009-05-13 05:36:08 UTC
  • mto: This revision was merged to the branch mainline in revision 8475.
  • Revision ID: michael.hudson@canonical.com-20090513053608-racxj33qv1097v81
bzr ls --versioned --recursive --kind=file | xargs sed -i -e 's,from canonical.codehosting,from lp.codehosting,'
bzr mv lib/canonical/codehosting lib/lp/codehosting
and one manual edit...

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
from zope.event import notify
37
37
from zope.interface import implements
38
38
 
39
 
from canonical.codehosting import sftp
40
 
from canonical.codehosting.sshserver import accesslog
41
 
from canonical.codehosting.sshserver.session import (
 
39
from lp.codehosting import sftp
 
40
from lp.codehosting.sshserver import accesslog
 
41
from lp.codehosting.sshserver.session import (
42
42
    launch_smart_server, PatchedSSHSession)
43
 
from canonical.codehosting.vfs.branchfsclient import trap_fault
 
43
from lp.codehosting.vfs.branchfsclient import trap_fault
44
44
from canonical.config import config
45
45
from canonical.launchpad.xmlrpc import faults
46
46