~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/ssh.py

  • Committer: Alexander Belchenko
  • Date: 2007-11-19 22:54:30 UTC
  • mfrom: (3006 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3008.
  • Revision ID: bialix@ukr.net-20071119225430-x0ewosrsagis0yno
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
132
132
 
133
133
    def _get_vendor_by_inspection(self):
134
134
        """Return the vendor or None by checking for known SSH implementations."""
135
 
        for args in [['ssh', '-V'], ['plink', '-V']]:
 
135
        # detection of plink vendor is disabled because of bug #107593
 
136
        # https://bugs.launchpad.net/bzr/+bug/107593
 
137
        # who want plink should explicitly enable it with BZR_SSH environment
 
138
        # variable.
 
139
        #~for args in (['ssh', '-V'], ['plink', '-V']):
 
140
        for args in (['ssh', '-V'],):
136
141
            version = self._get_ssh_version_string(args)
137
142
            vendor = self._get_vendor_by_version_string(version, args)
138
143
            if vendor is not None: