/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/fetch.py

  • Committer: Andrew Bennetts
  • Date: 2007-02-28 07:08:25 UTC
  • mfrom: (2018.13.1 hpss)
  • mto: (2018.5.80 hpss)
  • mto: This revision was merged to the branch mainline in revision 2435.
  • Revision ID: andrew.bennetts@canonical.com-20070228070825-q2dvkjb0a11ouhtx
Update to current hpss branch?  Fix lots of test failures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
        # result variables.
89
89
        self.failed_revisions = []
90
90
        self.count_copied = 0
91
 
        if to_repository.control_files._transport.base == from_repository.control_files._transport.base:
 
91
        if to_repository.bzrdir.root_transport.base == from_repository.bzrdir.root_transport.base:
92
92
            # check that last_revision is in 'from' and then return a no-operation.
93
93
            if last_revision not in (None, NULL_REVISION):
94
94
                from_repository.get_revision(last_revision)