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

Merge new dulwich; fetching objects from local repository works now; they aren't converted yet though.

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
                ret = heads.values()
90
90
            else:
91
91
                ret = [mapping.revision_id_bzr_to_foreign(revision_id)]
92
 
            return [rev for rev in ret if not self.target.has_revision(mapping.revision_id_foreign_to_bzr(revision_id))]
 
92
            return [rev for rev in ret if not self.target.has_revision(mapping.revision_id_foreign_to_bzr(rev))]
93
93
        graph_walker = BzrFetchGraphWalker(self.target, mapping)
94
94
        self.target.lock_write()
95
95
        try: