~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/sftp.py

  • Committer: John Arbash Meinel
  • Date: 2007-07-18 20:42:38 UTC
  • mfrom: (2625 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2643.
  • Revision ID: john@arbash-meinel.com-20070718204238-5gi11fx04q7zt72d
[merge] bzr.dev 2625

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
 
 
772
767
    def listable(self):
773
768
        """Return True if this store supports listing."""
774
769
        return True