/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

Initial work on supporting move_in_thin_pack.

Show diffs side-by-side

added added

removed removed

Lines of Context:
638
638
              isinstance(self.target, LocalGitRepository)):
639
639
            f, commit = self.target._git.object_store.add_thin_pack()
640
640
            try:
641
 
                refs = self.source._git.fetch_pack(determine_wants,
642
 
                    graphwalker, f.write, progress)
 
641
                refs = self.source.bzrdir.root_transport.fetch_pack(
 
642
                    determine_wants, graphwalker, f.write, progress)
643
643
                commit()
644
644
                return (None, None, refs)
645
645
            except: