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

Fix git -> git fetching.

Show diffs side-by-side

added added

removed removed

Lines of Context:
223
223
            raise AssertionError("Unknown object type '%s'" % type)
224
224
 
225
225
    def find_missing_objects(self, wants, graphwalker, progress=None):
226
 
        objfinder = MissingObjectFinder(self, want, graphwalker)
 
226
        objfinder = MissingObjectFinder(self, wants, graphwalker)
227
227
        return self.iter_shas(iter(objfinder.next, None))