/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/smart/medium.py

  • Committer: John Arbash Meinel
  • Date: 2007-12-03 16:39:11 UTC
  • mto: This revision was merged to the branch mainline in revision 3069.
  • Revision ID: john@arbash-meinel.com-20071203163911-vddzgry5m29blfbk
We don't require paramiko for bzr+ssh.
Don't pretend like we do.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
    SmartServerRequestProtocolOne,
38
38
    SmartServerRequestProtocolTwo,
39
39
    )
40
 
 
41
 
try:
42
 
    from bzrlib.transport import ssh
43
 
except errors.ParamikoNotPresent:
44
 
    # no paramiko.  SmartSSHClientMedium will break.
45
 
    pass
 
40
from bzrlib.transport import ssh
46
41
 
47
42
 
48
43
class SmartServerStreamMedium(object):