/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/transport/local.py

  • Committer: Robert Collins
  • Date: 2007-08-07 22:59:45 UTC
  • mfrom: (2681 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2682.
  • Revision ID: robertc@robertcollins.net-20070807225945-dlxppeb3we4lh897
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
            abspath = u'.'
128
128
 
129
129
        return urlutils.file_relpath(
130
 
            urlutils.strip_trailing_slash(self.base), 
 
130
            urlutils.strip_trailing_slash(self.base),
131
131
            urlutils.strip_trailing_slash(abspath))
132
132
 
133
133
    def has(self, relpath):
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
 
396
401
    def copy_to(self, relpaths, other, mode=None, pb=None):
397
402
        """Copy a set of entries from self into another Transport.
398
403