/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

Write git pack files rather than loose objects.

Show diffs side-by-side

added added

removed removed

Lines of Context:
398
398
        updater = self._get_updater(rev)
399
399
        for path, obj, ie in self._revision_to_objects(rev, tree,
400
400
            roundtrip=True):
401
 
            updater.add_object(obj, ie)
 
401
            updater.add_object(obj, ie, path)
402
402
        commit_obj = updater.finish()
403
403
        return commit_obj.id
404
404