~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/sftp.py

  • Committer: Robert Collins
  • Date: 2007-07-20 03:20:20 UTC
  • mfrom: (2592 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2635.
  • Revision ID: robertc@robertcollins.net-20070720032020-xiftpb5gqeebo861
(robertc) Reinstate the accidentally backed out external_url patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
764
764
        except (IOError, paramiko.SSHException), e:
765
765
            self._translate_io_exception(e, path, ': unable to delete')
766
766
            
 
767
    def external_url(self):
 
768
        """See bzrlib.transport.Transport.external_url."""
 
769
        # the external path for SFTP is the base
 
770
        return self.base
 
771
 
767
772
    def listable(self):
768
773
        """Return True if this store supports listing."""
769
774
        return True