/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/repofmt/knitrepo.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-08-08 00:28:10 UTC
  • mfrom: (2617.6.9 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20070808002810-703n3mr6b6hwataj
(robertc) Introduce write_groups for repositories, allowing repositories with the physical ability to do transactional data insertion to have that modelled within bzr. (Robert Collins).

Show diffs side-by-side

added added

removed removed

Lines of Context:
266
266
        :param revision_id: Optional revision id.
267
267
        """
268
268
        revision_id = osutils.safe_revision_id(revision_id)
269
 
        return RootCommitBuilder(self, parents, config, timestamp, timezone,
 
269
        result = RootCommitBuilder(self, parents, config, timestamp, timezone,
270
270
                                 committer, revprops, revision_id)
 
271
        self.start_write_group()
 
272
        return result
271
273
 
272
274
 
273
275
class RepositoryFormatKnit(MetaDirRepositoryFormat):