/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/plugins/weave_fmt/repository.py

  • Committer: Jelmer Vernooij
  • Date: 2011-04-16 15:01:57 UTC
  • mfrom: (5791 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5800.
  • Revision ID: jelmer@samba.org-20110416150157-5rgye9nnc8tic098
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
145
145
 
146
146
    def get_commit_builder(self, branch, parents, config, timestamp=None,
147
147
                           timezone=None, committer=None, revprops=None,
148
 
                           revision_id=None):
 
148
                           revision_id=None, lossy=False):
149
149
        self._check_ascii_revisionid(revision_id, self.get_commit_builder)
150
150
        result = CommitBuilder(self, parents, config, timestamp, timezone,
151
 
                              committer, revprops, revision_id)
 
151
                              committer, revprops, revision_id, lossy=lossy)
152
152
        self.start_write_group()
153
153
        return result
154
154
 
234
234
 
235
235
    def get_commit_builder(self, branch, parents, config, timestamp=None,
236
236
                           timezone=None, committer=None, revprops=None,
237
 
                           revision_id=None):
 
237
                           revision_id=None, lossy=False):
238
238
        self._check_ascii_revisionid(revision_id, self.get_commit_builder)
239
239
        result = CommitBuilder(self, parents, config, timestamp, timezone,
240
 
                              committer, revprops, revision_id)
 
240
                              committer, revprops, revision_id, lossy=lossy)
241
241
        self.start_write_group()
242
242
        return result
243
243