~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/fetch.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-02-22 06:19:39 UTC
  • mfrom: (1563.1.5 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060222061939-b4b7825d1d580ccf
Merge in ui for creating and converting to knit branch - no backend support yet.

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
        # result variables.
84
84
        self.failed_revisions = []
85
85
        self.count_copied = 0
86
 
        if to_repository.bzrdir.transport.base == from_repository.bzrdir.transport.base:
 
86
        if to_repository.control_files._transport.base == from_repository.control_files._transport.base:
87
87
            # check that last_revision is in 'from' and then return a no-operation.
88
88
            if last_revision not in (None, NULL_REVISION):
89
89
                from_repository.get_revision(last_revision)