~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/local.py

  • Committer: Vincent Ladeuil
  • Date: 2007-07-15 11:24:18 UTC
  • mfrom: (2617 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2646.
  • Revision ID: v.ladeuil+lp@free.fr-20070715112418-9nn4n6esxv60ny4b
merge bzr.dev@1617

Show diffs side-by-side

added added

removed removed

Lines of Context:
393
393
        except (IOError, OSError),e:
394
394
            self._translate_error(e, path)
395
395
 
396
 
    def external_url(self):
397
 
        """See bzrlib.transport.Transport.external_url."""
398
 
        # File URL's are externally usable.
399
 
        return self.base
400
 
 
401
396
    def copy_to(self, relpaths, other, mode=None, pb=None):
402
397
        """Copy a set of entries from self into another Transport.
403
398