/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

Revert change to fetch.py that broke test_upgrade_preserves_signatures for non-Remote repositories.  Still hangs for Remote repos too :(

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.bzrdir.root_transport.base == from_repository.bzrdir.root_transport.base:
 
91
        if to_repository.control_files._transport.base == from_repository.control_files._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)